* [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values
@ 2025-02-07 9:40 Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data Lukasz Laguna
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Lukasz Laguna @ 2025-02-07 9:40 UTC (permalink / raw)
To: igt-dev
Cc: marcin.bernatowicz, lukasz.laguna, satyanarayana.k.v.p,
michal.wajdeczko, adam.miszczak, jakub1.kolakowski
Series introduces subtests to validate that the configuration data
received by VF from GuC during probe matches the provisioned values.
Additionally, it includes the following helpers added for the subtests
purpose:
- helper to read VF's configuration data,
- helper to read VF's provisioned quota,
- helper to iterate over VFs within the specified range.
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Lukasz Laguna (4):
lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data
lib/xe/xe_sriov_provisioning: Add helper to get VF's provisioned quota
lib/igt_sriov_device: Add helper to iterate over VFs in specified
range
tests/xe_sriov_auto_provisioning: Add subtest to verify VF's
configuration
lib/igt_sriov_device.h | 18 ++++
lib/xe/xe_sriov_debugfs.c | 78 ++++++++++++++
lib/xe/xe_sriov_debugfs.h | 5 +
lib/xe/xe_sriov_provisioning.c | 59 +++++++++++
lib/xe/xe_sriov_provisioning.h | 6 ++
tests/intel/xe_sriov_auto_provisioning.c | 123 ++++++++++++++++++++++-
6 files changed, 287 insertions(+), 2 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
@ 2025-02-07 9:40 ` Lukasz Laguna
2025-02-10 10:43 ` Bernatowicz, Marcin
2025-02-07 9:40 ` [PATCH i-g-t v2 2/4] lib/xe/xe_sriov_provisioning: Add helper to get VF's provisioned quota Lukasz Laguna
` (6 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Lukasz Laguna @ 2025-02-07 9:40 UTC (permalink / raw)
To: igt-dev
Cc: marcin.bernatowicz, lukasz.laguna, satyanarayana.k.v.p,
michal.wajdeczko, adam.miszczak, jakub1.kolakowski
Add helper allowing to read configuration data that VF queried from GuC
during probe.
v2:
- remove redundant fd closing (Marcin)
- move helper to xe_sriov_debugfs lib (Marcin)
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
lib/xe/xe_sriov_debugfs.c | 78 +++++++++++++++++++++++++++++++++++++++
lib/xe/xe_sriov_debugfs.h | 5 +++
2 files changed, 83 insertions(+)
diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c
index abb1bf7d5..fb8a7c3e3 100644
--- a/lib/xe/xe_sriov_debugfs.c
+++ b/lib/xe/xe_sriov_debugfs.c
@@ -471,3 +471,81 @@ DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool *, get_boolean, __igt_sysfs_get_boolean)
* Return: 0 on success, negative error code on failure.
*/
DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool, set_boolean, __igt_sysfs_set_boolean)
+
+
+/**
+ * __xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
+ * @vf: VF device file descriptor
+ * @res: Shared resource type (see enum xe_sriov_shared_res)
+ * @gt_num: GT number
+ * @value: Pointer to store the read value
+ *
+ * Reads the specified shared resource @res from selfconfig of given VF device
+ * @vf on GT @gt_num.
+ *
+ * Return: 0 on success, negative error code on failure.
+ */
+int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
+ unsigned int gt_num, uint64_t *value)
+{
+ FILE *file;
+ size_t n = 0;
+ char *line = NULL;
+ int fd, ret = 0;
+
+ fd = igt_debugfs_gt_open(vf, gt_num, "vf/self_config", O_RDONLY);
+ if (fd < 0)
+ return fd;
+ file = fdopen(fd, "r");
+ if (!file) {
+ close(fd);
+ return -errno;
+ }
+
+ while (getline(&line, &n, file) >= 0) {
+ switch (res) {
+ case XE_SRIOV_SHARED_RES_CONTEXTS:
+ ret = sscanf(line, "GuC contexts: %lu", value);
+ break;
+ case XE_SRIOV_SHARED_RES_DOORBELLS:
+ ret = sscanf(line, "GuC doorbells: %lu", value);
+ break;
+ case XE_SRIOV_SHARED_RES_GGTT:
+ ret = sscanf(line, "GGTT size: %lu", value);
+ break;
+ case XE_SRIOV_SHARED_RES_LMEM:
+ ret = sscanf(line, "LMEM size: %lu", value);
+ break;
+ }
+
+ if (ret > 0)
+ break;
+ }
+
+ free(line);
+ fclose(file);
+
+ return ret ? 0 : -1;
+}
+/**
+ * xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
+ * @pf: PF device file descriptor
+ * @res: Shared resource type (see enum xe_sriov_shared_res)
+ * @gt_num: GT number
+ *
+ * A throwing version of __xe_sriov_vf_debugfs_get_selfconfig().
+ * Instead of returning an error code, it returns the quota value and asserts
+ * in case of an error.
+ *
+ * Return: The quota for the given shared resource.
+ * Asserts in case of failure.
+ */
+uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
+ unsigned int gt_num)
+{
+ uint64_t value;
+
+ igt_fail_on(__xe_sriov_vf_debugfs_get_selfconfig(vf, res, gt_num, &value));
+
+ return value;
+}
diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h
index cd5f932be..4983afbb3 100644
--- a/lib/xe/xe_sriov_debugfs.h
+++ b/lib/xe/xe_sriov_debugfs.h
@@ -39,4 +39,9 @@ int __xe_sriov_pf_debugfs_set_boolean(int pf, unsigned int vf_num,
unsigned int gt_num, const char *attr,
bool value);
+int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
+ unsigned int gt_num, uint64_t *value);
+uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
+ unsigned int gt_num);
+
#endif /* __XE_SRIOV_DEBUGFS_H__ */
--
2.40.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 2/4] lib/xe/xe_sriov_provisioning: Add helper to get VF's provisioned quota
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data Lukasz Laguna
@ 2025-02-07 9:40 ` Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range Lukasz Laguna
` (5 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Lukasz Laguna @ 2025-02-07 9:40 UTC (permalink / raw)
To: igt-dev
Cc: marcin.bernatowicz, lukasz.laguna, satyanarayana.k.v.p,
michal.wajdeczko, adam.miszczak, jakub1.kolakowski
Add helper allowing to get VF's provisioned quota based on provisioned
ranges exposed in debugfs.
v2:
- release allocated struct (Marcin)
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
lib/xe/xe_sriov_provisioning.c | 59 ++++++++++++++++++++++++++++++++++
lib/xe/xe_sriov_provisioning.h | 6 ++++
2 files changed, 65 insertions(+)
diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c
index 22035ffd8..f7d8c63d1 100644
--- a/lib/xe/xe_sriov_provisioning.c
+++ b/lib/xe/xe_sriov_provisioning.c
@@ -6,6 +6,8 @@
#include <errno.h>
#include "igt_core.h"
+#include "igt_debugfs.h"
+#include "igt_sriov_device.h"
#include "intel_chipset.h"
#include "linux_scaffold.h"
#include "xe/xe_mmio.h"
@@ -296,3 +298,60 @@ bool xe_sriov_is_shared_res_provisionable(int pf, enum xe_sriov_shared_res res,
return true;
}
+
+/**
+ * __xe_sriov_pf_get_provisioned_quota - Get VF's provisioned quota.
+ * @pf: PF device file descriptor
+ * @res: Shared resource type (see enum xe_sriov_shared_res)
+ * @vf_num: VF number (1-based)
+ * @gt_num: GT number
+ * @value: Pointer to store the read value
+ *
+ * Gets VF's provisioning value for the specified shared resource @res,
+ * VF number @vf_num and GT number @gt_num.
+ *
+ * Return: 0 on success, negative error code on failure.
+ */
+int __xe_sriov_pf_get_provisioned_quota(int pf, enum xe_sriov_shared_res res,
+ unsigned int vf_num, unsigned int gt_num,
+ uint64_t *value)
+{
+ struct xe_sriov_provisioned_range *ranges;
+ int ret;
+
+ ret = xe_sriov_pf_debugfs_read_check_ranges(pf, res, gt_num, &ranges,
+ igt_sriov_get_enabled_vfs(pf));
+ if (igt_debug_on_f(ret, "%s: Failed ranges check on GT%u (%d)\n",
+ xe_sriov_debugfs_provisioned_attr_name(res), gt_num, ret))
+ return ret;
+
+ *value = ranges[vf_num - 1].end - ranges[vf_num - 1].start + 1;
+
+ free(ranges);
+
+ return 0;
+}
+
+/**
+ * xe_sriov_pf_get_provisioned_quota - Get VF's provisioned quota.
+ * @pf: PF device file descriptor
+ * @res: Shared resource type (see enum xe_sriov_shared_res)
+ * @vf_num: VF number (1-based)
+ * @gt_num: GT number
+ *
+ * A throwing version of __xe_sriov_pf_get_provisioned_quota().
+ * Instead of returning an error code, it returns the quota value and asserts
+ * in case of an error.
+ *
+ * Return: The provisioned quota for the given shared resource.
+ * Asserts in case of failure.
+ */
+uint64_t xe_sriov_pf_get_provisioned_quota(int pf, enum xe_sriov_shared_res res,
+ unsigned int vf_num, unsigned int gt_num)
+{
+ uint64_t value;
+
+ igt_fail_on(__xe_sriov_pf_get_provisioned_quota(pf, res, vf_num, gt_num, &value));
+
+ return value;
+}
diff --git a/lib/xe/xe_sriov_provisioning.h b/lib/xe/xe_sriov_provisioning.h
index b4300ec2e..171e4f028 100644
--- a/lib/xe/xe_sriov_provisioning.h
+++ b/lib/xe/xe_sriov_provisioning.h
@@ -90,4 +90,10 @@ void xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res,
unsigned int vf_num, unsigned int gt_num,
uint64_t value);
+int __xe_sriov_pf_get_provisioned_quota(int pf, enum xe_sriov_shared_res res,
+ unsigned int vf_num, unsigned int gt_num,
+ uint64_t *value);
+uint64_t xe_sriov_pf_get_provisioned_quota(int pf, enum xe_sriov_shared_res res,
+ unsigned int vf_num, unsigned int gt_num);
+
#endif /* __XE_SRIOV_PROVISIONING_H__ */
--
2.40.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 2/4] lib/xe/xe_sriov_provisioning: Add helper to get VF's provisioned quota Lukasz Laguna
@ 2025-02-07 9:40 ` Lukasz Laguna
2025-02-11 11:23 ` Bernatowicz, Marcin
2025-02-07 9:40 ` [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration Lukasz Laguna
` (4 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Lukasz Laguna @ 2025-02-07 9:40 UTC (permalink / raw)
To: igt-dev
Cc: marcin.bernatowicz, lukasz.laguna, satyanarayana.k.v.p,
michal.wajdeczko, adam.miszczak, jakub1.kolakowski
Helper allows to iterate over VFs within the specified range.
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_sriov_device.h | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index de25a7d98..c12a8cf6c 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -86,6 +86,24 @@ igt_sriov_random_vf_in_range(int pf_fd, unsigned int start, unsigned int end)
++__vf_num)
#define for_each_sriov_num_vfs for_each_sriov_vf
+/**
+ * for_each_sriov_vf_in_range - Iterate over VFs in a specified range
+ * @__pf_fd: PF device file descriptor
+ * @__start: Starting VF number in the range
+ * @__end: Ending VF number in the range
+ * @__vf_num: Variable to store the random VF number
+ *
+ * For loop that iterates over VFs associated with given PF @__pf_fd,
+ * within the specified range [__start, __end]. The loop runs only if
+ * the range is valid.
+ */
+#define for_each_sriov_vf_in_range(__pf_fd, __start, __end, __vf_num) \
+ for (unsigned int __vf_num = __start & \
+ __is_valid_range(__start, __end, igt_sriov_get_total_vfs(__pf_fd)); \
+ __vf_num && __vf_num <= __end; \
+ ++__vf_num)
+#define for_each_sriov_num_vfs_in_range for_each_sriov_vf_in_range
+
/**
* for_random_sriov_vf_in_range - Iterate over a random VF in a specified range
* @__pf_fd: PF device file descriptor
--
2.40.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
` (2 preceding siblings ...)
2025-02-07 9:40 ` [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range Lukasz Laguna
@ 2025-02-07 9:40 ` Lukasz Laguna
2025-02-10 10:52 ` Bernatowicz, Marcin
2025-02-08 0:26 ` ✓ i915.CI.BAT: success for Verify VF configuration data against provisioned values (rev2) Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Lukasz Laguna @ 2025-02-07 9:40 UTC (permalink / raw)
To: igt-dev
Cc: marcin.bernatowicz, lukasz.laguna, satyanarayana.k.v.p,
michal.wajdeczko, adam.miszczak, jakub1.kolakowski
Added subtest checks if configuration data that VF got from GuC during
probe is the same as provisioned.
v2:
- add missing flag in subtest function call (Marcin)
- fix VFs range in subtest definition (Lukasz)
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/intel/xe_sriov_auto_provisioning.c | 123 ++++++++++++++++++++++-
1 file changed, 121 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c
index e13eb3644..c95e8fc08 100644
--- a/tests/intel/xe_sriov_auto_provisioning.c
+++ b/tests/intel/xe_sriov_auto_provisioning.c
@@ -33,6 +33,18 @@
* SUBTEST: exclusive-ranges
* Description:
* Verify that ranges of auto-provisioned resources are exclusive
+ *
+ * SUBTEST: selfconfig-basic
+ * Description:
+ * Check if VF configuration data is the same as provisioned
+ *
+ * SUBTEST: selfconfig-reprovision-increase-numvfs
+ * Description:
+ * Check if VF configuration data is updated properly after increasing number of VFs
+ *
+ * SUBTEST: selfconfig-reprovision-reduce-numvfs
+ * Description:
+ * Check if VF configuration data is updated properly after decreasing number of VFs
*/
IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning");
@@ -216,6 +228,70 @@ static void exclusive_ranges(int pf_fd, unsigned int num_vfs)
igt_fail_on_f(fails, "exclusive ranges check failed\n");
}
+#define REPROVISION_INCREASE_NUMVFS (0x1 << 0)
+#define REPROVISION_REDUCE_NUMVFS (0x1 << 1)
+
+static void check_selfconfig(int pf_fd, unsigned int vf_num, unsigned int flags)
+{
+ unsigned int gt_num, total_vfs = igt_sriov_get_total_vfs(pf_fd);
+ uint64_t provisioned, queried;
+ enum xe_sriov_shared_res res;
+ int vf_fd, fails = 0;
+
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, (flags & REPROVISION_REDUCE_NUMVFS) ? total_vfs : vf_num);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
+ vf_fd = igt_sriov_open_vf_drm_device(pf_fd, vf_num);
+ igt_assert_fd(vf_fd);
+
+ xe_for_each_gt(pf_fd, gt_num) {
+ xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt_num) {
+ provisioned = xe_sriov_pf_get_provisioned_quota(pf_fd, res, vf_num,
+ gt_num);
+ queried = xe_sriov_vf_debugfs_get_selfconfig(vf_fd, res, gt_num);
+
+ if (igt_debug_on_f(provisioned != queried,
+ "%s selfconfig check failed on gt%u\n",
+ xe_sriov_shared_res_to_string(res), gt_num))
+ fails++;
+ }
+ }
+
+ close(vf_fd);
+ igt_sriov_disable_vfs(pf_fd);
+
+ if (flags && !fails) {
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, (flags & REPROVISION_INCREASE_NUMVFS) ? total_vfs :
+ vf_num);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
+ vf_fd = igt_sriov_open_vf_drm_device(pf_fd, vf_num);
+ igt_assert_fd(vf_fd);
+
+ xe_for_each_gt(pf_fd, gt_num) {
+ xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt_num) {
+ provisioned = xe_sriov_pf_get_provisioned_quota(pf_fd, res, vf_num,
+ gt_num);
+ queried = xe_sriov_vf_debugfs_get_selfconfig(vf_fd, res, gt_num);
+
+ if (igt_debug_on_f(provisioned != queried,
+ "%s selfconfig check after reprovisioning failed on gt%u\n",
+ xe_sriov_shared_res_to_string(res), gt_num))
+ fails++;
+ }
+ }
+
+ close(vf_fd);
+ igt_sriov_disable_vfs(pf_fd);
+ }
+
+ igt_fail_on_f(fails, "selfconfig check failed\n");
+}
+
static bool extended_scope;
static int opts_handler(int opt, int opt_index, void *data)
@@ -242,9 +318,17 @@ static const char help_str[] =
igt_main_args("", long_opts, help_str, opts_handler, NULL)
{
enum xe_sriov_shared_res res;
- unsigned int gt;
+ unsigned int gt, total_vfs;
bool autoprobe;
int pf_fd;
+ static struct subtest_variants {
+ const char *name;
+ unsigned int flags;
+ } reprovisioning_variant[] = {
+ { "increase", REPROVISION_INCREASE_NUMVFS },
+ { "reduce", REPROVISION_REDUCE_NUMVFS },
+ { NULL },
+ };
igt_fixture {
struct xe_sriov_provisioned_range *ranges;
@@ -264,6 +348,7 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
}
}
autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
+ total_vfs = igt_sriov_get_total_vfs(pf_fd);
}
igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner");
@@ -298,7 +383,6 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
igt_describe("Verify that ranges of auto-provisioned resources are exclusive");
igt_subtest_with_dynamic_f("exclusive-ranges") {
- unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd);
igt_skip_on(total_vfs < 2);
@@ -315,6 +399,41 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
}
}
+ igt_describe("Check if VF configuration data is the same as provisioned");
+ igt_subtest_with_dynamic("selfconfig-basic") {
+ if (extended_scope)
+ for_each_sriov_vf(pf_fd, vf)
+ igt_dynamic_f("vf-%u", vf)
+ check_selfconfig(pf_fd, vf, 0);
+
+ for_random_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-random") {
+ igt_debug("vf=%u\n", vf);
+ check_selfconfig(pf_fd, vf, 0);
+ }
+ }
+ }
+
+ for (const struct subtest_variants *s = reprovisioning_variant; s->name; s++) {
+ igt_describe("Check if VF configuration data is the same as reprovisioned");
+ igt_subtest_with_dynamic_f("selfconfig-reprovision-%s-numvfs", s->name) {
+
+ igt_require(total_vfs > 1);
+
+ if (extended_scope)
+ for_each_sriov_vf_in_range(pf_fd, 1, total_vfs - 1, vf)
+ igt_dynamic_f("vf-%u", vf)
+ check_selfconfig(pf_fd, vf, s->flags);
+
+ for_random_sriov_vf_in_range(pf_fd, 1, total_vfs - 1, vf) {
+ igt_dynamic_f("vf-random") {
+ igt_debug("vf=%u\n", vf);
+ check_selfconfig(pf_fd, vf, s->flags);
+ }
+ }
+ }
+ }
+
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] 13+ messages in thread
* ✓ i915.CI.BAT: success for Verify VF configuration data against provisioned values (rev2)
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
` (3 preceding siblings ...)
2025-02-07 9:40 ` [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration Lukasz Laguna
@ 2025-02-08 0:26 ` Patchwork
2025-02-08 1:22 ` ✗ Xe.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-08 0:26 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6823 bytes --]
== Series Details ==
Series: Verify VF configuration data against provisioned values (rev2)
URL : https://patchwork.freedesktop.org/series/143918/
State : success
== Summary ==
CI Bug Log - changes from IGT_8227 -> IGTPW_12561
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/index.html
Participating hosts (41 -> 43)
------------------------------
Additional (3): fi-rkl-11600 fi-bsw-n3050 fi-pnv-d510
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12561 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3282])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][5] -> [DMESG-WARN][6] ([i915#13494])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-mtlp-9/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-rkl-11600: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-bsw-n3050: NOTRUN -> [SKIP][13] +20 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-bsw-n3050/igt@kms_psr@psr-primary-mmap-gtt.html
- fi-pnv-d510: NOTRUN -> [SKIP][14] +33 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-page-flip:
- fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#3291] / [i915#3708]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/fi-rkl-11600/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [ABORT][18] ([i915#12919] / [i915#13503]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-twl-1/igt@i915_selftest@live.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/bat-twl-1/igt@i915_selftest@live.html
- bat-rplp-1: [DMESG-WARN][20] -> [PASS][21] +1 other test pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-rplp-1/igt@i915_selftest@live.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/bat-rplp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [ABORT][22] ([i915#12919]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8227 -> IGTPW_12561
CI-20190529: 20190529
CI_DRM_16090: 4f934139887fd60bd4ac9027b7eec3e86ade8085 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12561: 6911e6d889026bffd48219d003881d1662292bbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8227: 8227
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/index.html
[-- Attachment #2: Type: text/html, Size: 7984 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Verify VF configuration data against provisioned values (rev2)
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
` (4 preceding siblings ...)
2025-02-08 0:26 ` ✓ i915.CI.BAT: success for Verify VF configuration data against provisioned values (rev2) Patchwork
@ 2025-02-08 1:22 ` Patchwork
2025-02-08 16:45 ` ✗ i915.CI.Full: " Patchwork
2025-02-08 19:19 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-08 1:22 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1900 bytes --]
== Series Details ==
Series: Verify VF configuration data against provisioned values (rev2)
URL : https://patchwork.freedesktop.org/series/143918/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8227_BAT -> XEIGTPW_12561_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12561_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12561_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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12561_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
Build changes
-------------
* IGT: IGT_8227 -> IGTPW_12561
* Linux: xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7 -> xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085
IGTPW_12561: 6911e6d889026bffd48219d003881d1662292bbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8227: 8227
xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7: e886a5edb53ade13f69b5809cbe03d7aa73885a7
xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085: 4f934139887fd60bd4ac9027b7eec3e86ade8085
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/index.html
[-- Attachment #2: Type: text/html, Size: 2496 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Verify VF configuration data against provisioned values (rev2)
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
` (5 preceding siblings ...)
2025-02-08 1:22 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-02-08 16:45 ` Patchwork
2025-02-08 19:19 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-08 16:45 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: Verify VF configuration data against provisioned values (rev2)
URL : https://patchwork.freedesktop.org/series/143918/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8227_full -> IGTPW_12561_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12561_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12561_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_12561/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12561_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_compute@compute-square:
- shard-dg2-9: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_compute@compute-square.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-rkl: [PASS][2] -> [SKIP][3] +29 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-rkl: NOTRUN -> [SKIP][4] +30 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1:
- shard-snb: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb2/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
* igt@perf_pmu@invalid-init:
- shard-glk: NOTRUN -> [FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk9/igt@perf_pmu@invalid-init.html
#### Warnings ####
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [TIMEOUT][8] ([i915#12917] / [i915#12964]) -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@gem_pxp@display-protected-crc.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@gem_pxp@display-protected-crc.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][10] ([i915#5286]) -> [SKIP][11] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][12] ([i915#3638]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][14] ([i915#6095]) -> [SKIP][15] +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][16] ([i915#7118] / [i915#9424]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][18] ([i915#3116]) -> [SKIP][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: [SKIP][20] ([i915#3555]) -> [SKIP][21] +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-legacy:
- shard-rkl: [DMESG-WARN][22] ([i915#12964]) -> [SKIP][23] +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-5/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][24] ([i915#3840]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][26] ([i915#12713]) -> [SKIP][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
Known issues
------------
Here are the changes found in IGTPW_12561_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8411]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8411])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#11078])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#11078]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#11078])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#11078])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#8414]) +8 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#11527] / [i915#8414]) +6 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vecs1:
- shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#8414])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#8414]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8414])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-hang.html
* igt@fbdev@unaligned-write:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#2582]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@fbdev@unaligned-write.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#9323])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#13008])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#13356])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#9323])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-3/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#9323])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#9323]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][47] -> [INCOMPLETE][48] ([i915#12392] / [i915#13356])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#7697])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][50] -> [ABORT][51] ([i915#13427])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@hang:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#8555])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_ctx_persistence@hang.html
- shard-snb: NOTRUN -> [SKIP][53] ([i915#1099])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb4/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#8555]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#280])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#280])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#280])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][58] ([i915#7975])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-6/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4771])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4771]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4036])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#4525]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4525]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@sliced:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4812]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#6344])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#6344])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4812])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2-9: NOTRUN -> [SKIP][68] ([i915#3539] / [i915#4852]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3539] / [i915#4852]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3539] / [i915#4852]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3539]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3281]) +8 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#3281]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3281]) +10 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3281]) +9 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3281]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-1/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#4537] / [i915#4812])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4812]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][79] +125 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb1/igt@gem_exec_schedule@thriceslice.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4860]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#4860]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#4613] / [i915#7582])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-glk: NOTRUN -> [SKIP][85] ([i915#4613]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk9/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#12193]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4565]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][88] -> [TIMEOUT][89] ([i915#5493]) +1 other test timeout
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#4613]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#4613]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#4613]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#284])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@gem_media_vme.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4083]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4083]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4083]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#4083]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#3282]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3282]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][101] ([i915#2658])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3282]) +8 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][103] -> [SKIP][104] ([i915#4270])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4270])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#13398])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][107] ([i915#12917] / [i915#12964]) +2 other tests timeout
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: [PASS][108] -> [TIMEOUT][109] ([i915#12964])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#4270]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4270]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#4270])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#3282]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-1/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#5190] / [i915#8428]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190] / [i915#8428]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8428]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][117] ([i915#4079]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4079]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4885])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][120] -> [DMESG-FAIL][121] ([i915#12964]) +1 other test dmesg-fail
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4077]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4077]) +15 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [PASS][124] -> [FAIL][125] ([i915#12941])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4077]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#3297])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-2/igt@gem_userptr_blits@coherency-unsync.html
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3297])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-9/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#3297] / [i915#3323])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#3297]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3297]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3297] / [i915#4880])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3297] / [i915#4880])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3281] / [i915#3297])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297] / [i915#4958])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][136] ([i915#3297]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#3297])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@reset:
- shard-mtlp: [PASS][138] -> [ABORT][139] ([i915#13193]) +3 other tests abort
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-mtlp-5/igt@gem_workarounds@reset.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-7/igt@gem_workarounds@reset.html
* igt@gen3_render_linear_blits:
- shard-mtlp: NOTRUN -> [SKIP][140] +15 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][141] +23 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#2527] / [i915#2856])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#2856]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#2856]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#2527]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#2527]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg2-9: NOTRUN -> [SKIP][147] ([i915#2856])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#2527] / [i915#2856]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4881])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][150] -> [ABORT][151] ([i915#9820])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6412])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [PASS][153] -> [FAIL][154] ([i915#3591])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][155] -> [FAIL][156] ([i915#12739] / [i915#3591])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][157] ([i915#12797])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk7/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#11681] / [i915#6621])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11681])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6245])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][161] ([i915#9311]) +1 other test dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [INCOMPLETE][162] ([i915#4817])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-tglu: NOTRUN -> [INCOMPLETE][163] ([i915#7443])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [PASS][164] -> [INCOMPLETE][165] ([i915#4817])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-glk1/igt@i915_suspend@debugfs-reader.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk2/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#7707])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#7707])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#5190]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#5190])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#4215])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#4212]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4212]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][173] ([i915#12761] / [i915#1982]) +1 other test incomplete
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#8709]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#8709]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8709]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#8709]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#1769] / [i915#3555])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#1769] / [i915#3555]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#5286]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][181] +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#4538] / [i915#5286]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#5286]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#5286])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#5138])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#5286]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#4538] / [i915#5190]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3638]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3638]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#4538] / [i915#5190]) +6 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6187]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#4538]) +8 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#6095]) +153 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#10307] / [i915#6095]) +44 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#12313])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#6095]) +39 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#12313]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#12313]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#12313]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#12313])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#6095]) +84 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#6095]) +39 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#12805])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#12805])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#6095]) +44 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#6095]) +11 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#12313]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#12313])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#10307] / [i915#6095]) +131 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#4087]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][213] +61 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#11151] / [i915#7828]) +13 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#11151] / [i915#7828]) +8 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#11151] / [i915#7828]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#11151] / [i915#7828]) +13 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#11151] / [i915#7828]) +6 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#11151] / [i915#7828]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#11151] / [i915#7828]) +5 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#3555]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#7116] / [i915#9424]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3299])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#3116])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3299])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#6944] / [i915#9424]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9424])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#7116])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#7118] / [i915#9424])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-2/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#7118] / [i915#9424])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555]) +9 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#13049]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#13049])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][235] ([i915#13566]) +1 other test fail
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#13049])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#13049])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][238] -> [FAIL][239] ([i915#13566]) +1 other test fail
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][240] ([i915#13566]) +2 other tests fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#13049]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8814]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#13049])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][244] ([i915#13566]) +1 other test fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-tglu: [PASS][245] -> [FAIL][246] ([i915#13566]) +1 other test fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#13046] / [i915#5354]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9809]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#13046] / [i915#5354]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#4103] / [i915#4213]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-rkl: [PASS][251] -> [DMESG-WARN][252] ([i915#12964]) +9 other tests dmesg-warn
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#9067])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9067])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#4213])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#9723])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#8588])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][258] -> [SKIP][259] ([i915#3555])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#12402])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#12402])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#3840])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#3840]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#3840])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#3840])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#3840])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#3840])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#3840]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#3840] / [i915#9053])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#3840] / [i915#9053])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#3469])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-9: NOTRUN -> [SKIP][273] ([i915#1839])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#1839]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#9337])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-2/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#9337])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#9337])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9337])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9337])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-9: NOTRUN -> [SKIP][280] ([i915#658])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#658])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#4881])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#9934]) +7 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3637]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#9934]) +5 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3637]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#9934]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#3637]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#9934]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][290] ([i915#11989]) +1 other test fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-2/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [PASS][291] -> [FAIL][292] ([i915#11989]) +3 other tests fail
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-7/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [PASS][293] -> [FAIL][294] ([i915#11989]) +1 other test fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-mtlp: [PASS][295] -> [FAIL][296] ([i915#11989]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][297] ([i915#12745] / [i915#4839])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2: [PASS][298] -> [INCOMPLETE][299] ([i915#12745] / [i915#4839] / [i915#6113])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp3:
- shard-dg2: NOTRUN -> [INCOMPLETE][300] ([i915#6113])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@a-dp3.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][301] ([i915#12745])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [PASS][302] -> [FAIL][303] ([i915#11989]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][304] ([i915#11989]) +4 other tests fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#2587] / [i915#2672]) +7 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-rkl: [PASS][306] -> [SKIP][307] ([i915#3555]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][308] ([i915#2672] / [i915#3555])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#2672] / [i915#3555]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#2672] / [i915#8813]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#2587] / [i915#2672]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-4/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:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#2672] / [i915#3555]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#2672]) +7 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-7/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:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#2672]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/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:
- shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#2672] / [i915#3555] / [i915#5190])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][318] ([i915#2672]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#3555]) +10 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8810] / [i915#8813])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8810])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#2672] / [i915#3555]) +7 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#2672] / [i915#3555]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#2672] / [i915#3555]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#2587] / [i915#2672]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#8708]) +6 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-9: NOTRUN -> [FAIL][327] ([i915#6880])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#5354]) +19 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
- shard-snb: [PASS][329] -> [SKIP][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][331] +64 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-9: NOTRUN -> [SKIP][332] ([i915#5354]) +15 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][333] ([i915#8708]) +11 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#8708]) +17 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2: [PASS][335] -> [FAIL][336] ([i915#6880]) +2 other tests fail
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-rkl: [PASS][337] -> [SKIP][338] ([i915#1849] / [i915#5354]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][339] ([i915#3458]) +13 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#8708]) +27 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#3458]) +28 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][342] +51 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9766])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#9766])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#10433] / [i915#3458])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#3458]) +9 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#3023]) +35 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#1849] / [i915#5354]) +15 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#1825]) +40 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#1825]) +19 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8228]) +2 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#12713])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#8228])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8228]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#8228])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_hdr@static-swap.html
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8228]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8228])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#8228])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#6403] / [i915#8826])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9457]) +3 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#10656])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#12388])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#10656])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#10656])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#10656])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][366] ([i915#12339]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#12339])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#13522])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#13522])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#1839])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#6301])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#6301])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#6301])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#6301])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-17/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][375] +10 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [PASS][376] -> [INCOMPLETE][377] ([i915#12756])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@plane-position-hole:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#8825]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-rkl: [PASS][379] -> [SKIP][380] ([i915#7294]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#8821])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-rkl: [PASS][382] -> [SKIP][383] ([i915#8152]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_plane_scaling@invalid-parameters.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#12247] / [i915#9423]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#12247]) +8 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#12247]) +17 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-glk: NOTRUN -> [SKIP][387] +262 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-glk6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#12247]) +9 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#12247] / [i915#6953] / [i915#9423])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#12247] / [i915#6953]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-rkl: [PASS][391] -> [SKIP][392] ([i915#12247] / [i915#8152])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- shard-rkl: [PASS][393] -> [SKIP][394] ([i915#12247]) +5 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#12247]) +27 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-rkl: [PASS][396] -> [SKIP][397] ([i915#6953] / [i915#8152])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#12247] / [i915#8152]) +3 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#12247] / [i915#6953]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#12247] / [i915#6953] / [i915#9423])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#12247]) +11 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][402] ([i915#12247]) +7 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][403] ([i915#12247] / [i915#3555])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#12247] / [i915#3555])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg2-9: NOTRUN -> [SKIP][405] ([i915#12247] / [i915#3555] / [i915#9423])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#12247]) +7 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#12247] / [i915#6953])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][408] ([i915#5354]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][409] ([i915#12343])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2-9: NOTRUN -> [SKIP][410] ([i915#12343])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#9812])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#5354])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#9685]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu-1: NOTRUN -> [SKIP][414] ([i915#9685])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-9: NOTRUN -> [SKIP][415] ([i915#9685])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][416] ([i915#3828])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][417] ([i915#12913])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][418] ([i915#5978])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][419] ([i915#9295])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][420] ([i915#12912])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][421] ([i915#9685])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][422] ([i915#9685])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][423] ([i915#9340])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: NOTRUN -> [SKIP][424] ([i915#1849])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-rkl-8/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][425] ([i915#9519])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][426] ([i915#9519]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/shard-mtlp-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][427] -> [SKIP]
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12561/index.html
[-- Attachment #2: Type: text/html, Size: 109740 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for Verify VF configuration data against provisioned values (rev2)
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
` (6 preceding siblings ...)
2025-02-08 16:45 ` ✗ i915.CI.Full: " Patchwork
@ 2025-02-08 19:19 ` Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-08 19:19 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77629 bytes --]
== Series Details ==
Series: Verify VF configuration data against provisioned values (rev2)
URL : https://patchwork.freedesktop.org/series/143918/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8227_full -> XEIGTPW_12561_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12561_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12561_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12561_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_joiner@basic-force-big-joiner.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_spin_batch@spin-timestamp-check:
- shard-lnl: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-1/igt@xe_spin_batch@spin-timestamp-check.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-3/igt@xe_spin_batch@spin-timestamp-check.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs (NEW):
- shard-bmg: NOTRUN -> [SKIP][6] +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-dg2-set2: NOTRUN -> [SKIP][7] +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-lnl: NOTRUN -> [SKIP][8] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Warnings ####
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][9] ([Intel XE#1033]) -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@xe_pm@s4-basic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@xe_pm@s4-basic.html
- shard-bmg: [ABORT][11] ([Intel XE#4172]) -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@xe_pm@s4-basic.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@xe_pm@s4-basic.html
New tests
---------
New tests have been introduced between XEIGT_8227_full and XEIGTPW_12561_full:
### New IGT tests (4) ###
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- Statuses :
- Exec time: [None] s
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12561_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2233])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#623])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1466])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2:
- shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#827])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1512]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#367])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +16 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +15 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#3862]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +121 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +42 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2724])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#314])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#314])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2325]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#306]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#373]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2252]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_color@ctm-0-25:
- shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#877]) +1 other test dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_color@ctm-0-25.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_color@ctm-0-25.html
* igt@kms_color@ctm-0-25@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][54] ([Intel XE#877])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_color@ctm-0-25@pipe-a-hdmi-a-3.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2390])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#307])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#307])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3278]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#1178]) +1 other test fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2341]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_content_protection@mei-interface.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1468])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][63] ([Intel XE#1033]) +11 other tests dmesg-warn
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1424]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2321])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#308])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2321])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2291]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#309]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2286]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2291]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#309]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#323]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#323]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#3009])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_dp_aux_dev.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_dp_aux_dev.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4156])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][81] ([Intel XE#1033])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1138])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1138])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1138])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2374])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1135])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#310]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1421]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#310]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][91] -> [FAIL][92] ([Intel XE#3321])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#301]) +7 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][94] ([Intel XE#4172]) +2 other tests dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2316]) +7 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_flip@2x-plain-flip.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2316]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [PASS][98] -> [FAIL][99] ([Intel XE#2882]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#1033]) +43 other tests dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_flip@busy-flip.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_flip@busy-flip.html
* igt@kms_flip@dpms-vs-vblank-race@a-dp2:
- shard-bmg: [PASS][102] -> [FAIL][103] ([Intel XE#3098]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_flip@dpms-vs-vblank-race@a-dp2.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_flip@dpms-vs-vblank-race@a-dp2.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#886]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp2:
- shard-bmg: NOTRUN -> [FAIL][106] ([Intel XE#3321])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][107] -> [INCOMPLETE][108] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#4172]) +14 other tests dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1401]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1397] / [Intel XE#1745])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1397])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2293]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#352])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#651]) +20 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2312]) +14 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#656]) +10 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#656]) +49 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2311]) +23 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [PASS][123] -> [SKIP][124] ([Intel XE#656]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4141]) +11 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#651]) +17 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#653]) +22 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2313]) +15 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2502])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#605])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#605])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#1503])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2927])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2927])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_joiner@basic-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2927])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2501])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#356])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#356])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#599]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#455]) +20 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_plane_lowres@tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2393])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2763]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-bmg: [PASS][144] -> [DMESG-WARN][145] ([Intel XE#2566] / [Intel XE#4172])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2763]) +23 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +9 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2938])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2938])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2391])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1122])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#736])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#3309])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#3309])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#3309])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#836]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_pm_rpm@dpms-non-lpsp.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#1489]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2893]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1489]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1406]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1127])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#3414]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#362]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2426])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1500])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-lnl: NOTRUN -> [FAIL][172] ([Intel XE#1522]) +3 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1499]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1499]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@kms_vrr@negative-basic.html
- shard-dg2-set2: [PASS][175] -> [SKIP][176] ([Intel XE#455])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_vrr@negative-basic.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#1091] / [Intel XE#2849])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1091] / [Intel XE#2849])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1091] / [Intel XE#2849])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@testdisplay:
- shard-dg2-set2: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#2705] / [Intel XE#4212])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@testdisplay.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@testdisplay.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#1447])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#1123])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2504])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2905]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#3889])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#3889])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#3889])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#2905]) +9 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-1/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug@sysfs-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2905]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#688]) +6 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2322]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#1392]) +6 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#288]) +18 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#2360])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#1192])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#1192] / [Intel XE#3026])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#1192])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#4045])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-2/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#379])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@xe_noexec_ping_pong.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2248])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#2248])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-3/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-7/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2284]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: NOTRUN -> [DMESG-WARN][207] ([Intel XE#4172] / [Intel XE#569])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][208] ([Intel XE#1033] / [Intel XE#569])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#584])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-5/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][210] -> [DMESG-WARN][211] ([Intel XE#4172] / [Intel XE#569]) +2 other tests dmesg-warn
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [PASS][212] -> [DMESG-WARN][213] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#944]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@xe_query@multigpu-query-engines.html
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#944]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-6/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#944]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@xe_query@multigpu-query-gt-list.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2:
- shard-bmg: [FAIL][217] ([Intel XE#827]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][219] -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][221] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-bmg: [DMESG-WARN][223] ([Intel XE#4172]) -> [PASS][224] +11 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][225] ([Intel XE#2291]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: [SKIP][227] ([Intel XE#309]) -> [PASS][228] +2 other tests pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][229] ([Intel XE#1340]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][231] ([Intel XE#2373]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][233] ([Intel XE#3321]) -> [PASS][234] +2 other tests pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][235] ([Intel XE#2316]) -> [PASS][236] +3 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg2-set2: [SKIP][237] ([Intel XE#310]) -> [PASS][238] +3 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][239] ([Intel XE#656]) -> [PASS][240] +5 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: [INCOMPLETE][241] ([Intel XE#2050]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][243] ([Intel XE#1033]) -> [PASS][244] +25 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-435/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][245] ([Intel XE#2571]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][247] ([Intel XE#1033] / [Intel XE#2042]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
#### Warnings ####
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][249] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][250] ([Intel XE#787]) +8 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][251] ([Intel XE#787]) -> [SKIP][252] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][253] ([Intel XE#1033]) -> [SKIP][254] ([Intel XE#309])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][255] ([Intel XE#2291]) -> [INCOMPLETE][256] ([Intel XE#3226])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][257] ([Intel XE#301]) -> [SKIP][258] ([Intel XE#310])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][259] ([Intel XE#310]) -> [FAIL][260] ([Intel XE#301])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [SKIP][261] ([Intel XE#2316]) -> [DMESG-WARN][262] ([Intel XE#4172])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-dg2-set2: [DMESG-WARN][263] ([Intel XE#1033]) -> [SKIP][264] ([Intel XE#310])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2311]) +9 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][267] ([Intel XE#4141]) -> [SKIP][268] ([Intel XE#2312]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [DMESG-WARN][269] ([Intel XE#1033]) -> [SKIP][270] ([Intel XE#656])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][271] ([Intel XE#2312]) -> [SKIP][272] ([Intel XE#4141]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][273] ([Intel XE#656]) -> [SKIP][274] ([Intel XE#651]) +11 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][275] ([Intel XE#2311]) -> [SKIP][276] ([Intel XE#2312]) +17 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][277] ([Intel XE#651]) -> [SKIP][278] ([Intel XE#656]) +11 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][279] ([Intel XE#2312]) -> [SKIP][280] ([Intel XE#2313]) +11 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][281] ([Intel XE#2313]) -> [SKIP][282] ([Intel XE#2312]) +15 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][283] ([Intel XE#656]) -> [SKIP][284] ([Intel XE#653]) +12 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][285] ([Intel XE#653]) -> [SKIP][286] ([Intel XE#656]) +14 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [DMESG-WARN][287] ([Intel XE#4212]) -> [DMESG-WARN][288] ([Intel XE#2705] / [Intel XE#4212])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][289] ([Intel XE#4172]) -> [FAIL][290] ([Intel XE#1430])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8227 -> IGTPW_12561
* Linux: xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7 -> xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085
IGTPW_12561: 6911e6d889026bffd48219d003881d1662292bbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8227: 8227
xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7: e886a5edb53ade13f69b5809cbe03d7aa73885a7
xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085: 4f934139887fd60bd4ac9027b7eec3e86ade8085
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12561/index.html
[-- Attachment #2: Type: text/html, Size: 91572 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data
2025-02-07 9:40 ` [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data Lukasz Laguna
@ 2025-02-10 10:43 ` Bernatowicz, Marcin
2025-02-10 10:57 ` Bernatowicz, Marcin
0 siblings, 1 reply; 13+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-10 10:43 UTC (permalink / raw)
To: Lukasz Laguna, igt-dev
Cc: satyanarayana.k.v.p, michal.wajdeczko, adam.miszczak,
jakub1.kolakowski
On 2/7/2025 10:40 AM, Lukasz Laguna wrote:
> Add helper allowing to read configuration data that VF queried from GuC
> during probe.
>
> v2:
> - remove redundant fd closing (Marcin)
> - move helper to xe_sriov_debugfs lib (Marcin)
>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> Reviewed-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> ---
> lib/xe/xe_sriov_debugfs.c | 78 +++++++++++++++++++++++++++++++++++++++
> lib/xe/xe_sriov_debugfs.h | 5 +++
> 2 files changed, 83 insertions(+)
>
> diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c
> index abb1bf7d5..fb8a7c3e3 100644
> --- a/lib/xe/xe_sriov_debugfs.c
> +++ b/lib/xe/xe_sriov_debugfs.c
> @@ -471,3 +471,81 @@ DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool *, get_boolean, __igt_sysfs_get_boolean)
> * Return: 0 on success, negative error code on failure.
> */
> DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool, set_boolean, __igt_sysfs_set_boolean)
> +
> +
CHECK:LINE_SPACING: Please don't use multiple blank lines
> +/**
> + * __xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
> + * @vf: VF device file descriptor
> + * @res: Shared resource type (see enum xe_sriov_shared_res)
> + * @gt_num: GT number
> + * @value: Pointer to store the read value
> + *
> + * Reads the specified shared resource @res from selfconfig of given VF device
> + * @vf on GT @gt_num.
> + *
> + * Return: 0 on success, negative error code on failure.
> + */
> +int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
> + unsigned int gt_num, uint64_t *value)
CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
> +{
> + FILE *file;
> + size_t n = 0;
> + char *line = NULL;
> + int fd, ret = 0;
> +
> + fd = igt_debugfs_gt_open(vf, gt_num, "vf/self_config", O_RDONLY);
> + if (fd < 0)
> + return fd;
> + file = fdopen(fd, "r");
> + if (!file) {
> + close(fd);
> + return -errno;
> + }
> +
> + while (getline(&line, &n, file) >= 0) {
> + switch (res) {
> + case XE_SRIOV_SHARED_RES_CONTEXTS:
> + ret = sscanf(line, "GuC contexts: %lu", value);
> + break;
> + case XE_SRIOV_SHARED_RES_DOORBELLS:
> + ret = sscanf(line, "GuC doorbells: %lu", value);
> + break;
> + case XE_SRIOV_SHARED_RES_GGTT:
> + ret = sscanf(line, "GGTT size: %lu", value);
> + break;
> + case XE_SRIOV_SHARED_RES_LMEM:
> + ret = sscanf(line, "LMEM size: %lu", value);
> + break;
> + }
> +
> + if (ret > 0)
> + break;
> + }
> +
> + free(line);
> + fclose(file);
> +
> + return ret ? 0 : -1;
> +}
> +/**
CHECK:LINE_SPACING: Please use a blank line after
function/struct/union/enum declarations
> + * xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
> + * @pf: PF device file descriptor
> + * @res: Shared resource type (see enum xe_sriov_shared_res)
> + * @gt_num: GT number
> + *
> + * A throwing version of __xe_sriov_vf_debugfs_get_selfconfig().
> + * Instead of returning an error code, it returns the quota value and asserts
> + * in case of an error.
> + *
> + * Return: The quota for the given shared resource.
> + * Asserts in case of failure.
> + */
> +uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
> + unsigned int gt_num)
CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
> +{
> + uint64_t value;
> +
> + igt_fail_on(__xe_sriov_vf_debugfs_get_selfconfig(vf, res, gt_num, &value));
> +
> + return value;
> +}
> diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h
> index cd5f932be..4983afbb3 100644
> --- a/lib/xe/xe_sriov_debugfs.h
> +++ b/lib/xe/xe_sriov_debugfs.h
> @@ -39,4 +39,9 @@ int __xe_sriov_pf_debugfs_set_boolean(int pf, unsigned int vf_num,
> unsigned int gt_num, const char *attr,
> bool value);
>
> +int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
> + unsigned int gt_num, uint64_t *value);
> +uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum xe_sriov_shared_res res,
> + unsigned int gt_num);
> +
> #endif /* __XE_SRIOV_DEBUGFS_H__ */
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration
2025-02-07 9:40 ` [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration Lukasz Laguna
@ 2025-02-10 10:52 ` Bernatowicz, Marcin
0 siblings, 0 replies; 13+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-10 10:52 UTC (permalink / raw)
To: Lukasz Laguna, igt-dev
Cc: satyanarayana.k.v.p, michal.wajdeczko, adam.miszczak,
jakub1.kolakowski
On 2/7/2025 10:40 AM, Lukasz Laguna wrote:
> Added subtest checks if configuration data that VF got from GuC during
> probe is the same as provisioned.
>
> v2:
> - add missing flag in subtest function call (Marcin)
> - fix VFs range in subtest definition (Lukasz)
>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> tests/intel/xe_sriov_auto_provisioning.c | 123 ++++++++++++++++++++++-
> 1 file changed, 121 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c
> index e13eb3644..c95e8fc08 100644
> --- a/tests/intel/xe_sriov_auto_provisioning.c
> +++ b/tests/intel/xe_sriov_auto_provisioning.c
> @@ -33,6 +33,18 @@
> * SUBTEST: exclusive-ranges
> * Description:
> * Verify that ranges of auto-provisioned resources are exclusive
> + *
> + * SUBTEST: selfconfig-basic
> + * Description:
> + * Check if VF configuration data is the same as provisioned
> + *
> + * SUBTEST: selfconfig-reprovision-increase-numvfs
> + * Description:
> + * Check if VF configuration data is updated properly after increasing number of VFs
> + *
> + * SUBTEST: selfconfig-reprovision-reduce-numvfs
> + * Description:
> + * Check if VF configuration data is updated properly after decreasing number of VFs
> */
>
> IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning");
> @@ -216,6 +228,70 @@ static void exclusive_ranges(int pf_fd, unsigned int num_vfs)
> igt_fail_on_f(fails, "exclusive ranges check failed\n");
> }
>
> +#define REPROVISION_INCREASE_NUMVFS (0x1 << 0)
> +#define REPROVISION_REDUCE_NUMVFS (0x1 << 1)
> +
> +static void check_selfconfig(int pf_fd, unsigned int vf_num, unsigned int flags)
> +{
> + unsigned int gt_num, total_vfs = igt_sriov_get_total_vfs(pf_fd);
> + uint64_t provisioned, queried;
> + enum xe_sriov_shared_res res;
> + int vf_fd, fails = 0;
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, (flags & REPROVISION_REDUCE_NUMVFS) ? total_vfs : vf_num);
> + igt_sriov_enable_driver_autoprobe(pf_fd);
> +
> + igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
> + vf_fd = igt_sriov_open_vf_drm_device(pf_fd, vf_num);
> + igt_assert_fd(vf_fd);
> +
> + xe_for_each_gt(pf_fd, gt_num) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt_num) {
> + provisioned = xe_sriov_pf_get_provisioned_quota(pf_fd, res, vf_num,
> + gt_num);
> + queried = xe_sriov_vf_debugfs_get_selfconfig(vf_fd, res, gt_num);
> +
> + if (igt_debug_on_f(provisioned != queried,
> + "%s selfconfig check failed on gt%u\n",
> + xe_sriov_shared_res_to_string(res), gt_num))
CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
> + fails++;
> + }
> + }
> +
> + close(vf_fd);
> + igt_sriov_disable_vfs(pf_fd);
> +
> + if (flags && !fails) {
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, (flags & REPROVISION_INCREASE_NUMVFS) ? total_vfs :
> + vf_num);
> + igt_sriov_enable_driver_autoprobe(pf_fd);
> +
> + igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
> + vf_fd = igt_sriov_open_vf_drm_device(pf_fd, vf_num);
> + igt_assert_fd(vf_fd);
> +
> + xe_for_each_gt(pf_fd, gt_num) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt_num) {
> + provisioned = xe_sriov_pf_get_provisioned_quota(pf_fd, res, vf_num,
> + gt_num);
> + queried = xe_sriov_vf_debugfs_get_selfconfig(vf_fd, res, gt_num);
> +
> + if (igt_debug_on_f(provisioned != queried,
> + "%s selfconfig check after reprovisioning failed on gt%u\n",
> + xe_sriov_shared_res_to_string(res), gt_num))
> + fails++;
> + }
> + }
> +
> + close(vf_fd);
> + igt_sriov_disable_vfs(pf_fd);
> + }
> +
> + igt_fail_on_f(fails, "selfconfig check failed\n");
> +}
> +
> static bool extended_scope;
>
> static int opts_handler(int opt, int opt_index, void *data)
> @@ -242,9 +318,17 @@ static const char help_str[] =
> igt_main_args("", long_opts, help_str, opts_handler, NULL)
> {
> enum xe_sriov_shared_res res;
> - unsigned int gt;
> + unsigned int gt, total_vfs;
> bool autoprobe;
> int pf_fd;
> + static struct subtest_variants {
> + const char *name;
> + unsigned int flags;
> + } reprovisioning_variant[] = {
> + { "increase", REPROVISION_INCREASE_NUMVFS },
> + { "reduce", REPROVISION_REDUCE_NUMVFS },
> + { NULL },
> + };
>
> igt_fixture {
> struct xe_sriov_provisioned_range *ranges;
> @@ -264,6 +348,7 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
> }
> }
> autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
> + total_vfs = igt_sriov_get_total_vfs(pf_fd);
> }
>
> igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner");
> @@ -298,7 +383,6 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
>
> igt_describe("Verify that ranges of auto-provisioned resources are exclusive");
> igt_subtest_with_dynamic_f("exclusive-ranges") {
> - unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd);
>
> igt_skip_on(total_vfs < 2);
>
> @@ -315,6 +399,41 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
> }
> }
>
> + igt_describe("Check if VF configuration data is the same as provisioned");
> + igt_subtest_with_dynamic("selfconfig-basic") {
> + if (extended_scope)
> + for_each_sriov_vf(pf_fd, vf)
> + igt_dynamic_f("vf-%u", vf)
> + check_selfconfig(pf_fd, vf, 0);
> +
> + for_random_sriov_vf(pf_fd, vf) {
> + igt_dynamic_f("vf-random") {
> + igt_debug("vf=%u\n", vf);
> + check_selfconfig(pf_fd, vf, 0);
> + }
> + }
> + }
> +
> + for (const struct subtest_variants *s = reprovisioning_variant; s->name; s++) {
> + igt_describe("Check if VF configuration data is the same as reprovisioned");
> + igt_subtest_with_dynamic_f("selfconfig-reprovision-%s-numvfs", s->name) {
> +
> + igt_require(total_vfs > 1);
> +
> + if (extended_scope)
> + for_each_sriov_vf_in_range(pf_fd, 1, total_vfs - 1, vf)
> + igt_dynamic_f("vf-%u", vf)
> + check_selfconfig(pf_fd, vf, s->flags);
> +
> + for_random_sriov_vf_in_range(pf_fd, 1, total_vfs - 1, vf) {
> + igt_dynamic_f("vf-random") {
> + igt_debug("vf=%u\n", vf);
> + check_selfconfig(pf_fd, vf, s->flags);
> + }
> + }
> + }
> + }
> +
LGTM, with one indentation correction,
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> igt_fixture {
> igt_sriov_disable_vfs(pf_fd);
> /* abort to avoid execution of next tests with enabled VFs */
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data
2025-02-10 10:43 ` Bernatowicz, Marcin
@ 2025-02-10 10:57 ` Bernatowicz, Marcin
0 siblings, 0 replies; 13+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-10 10:57 UTC (permalink / raw)
To: Lukasz Laguna, igt-dev
Cc: satyanarayana.k.v.p, michal.wajdeczko, adam.miszczak,
jakub1.kolakowski
On 2/10/2025 11:43 AM, Bernatowicz, Marcin wrote:
>
>
> On 2/7/2025 10:40 AM, Lukasz Laguna wrote:
>> Add helper allowing to read configuration data that VF queried from GuC
>> during probe.
>>
>> v2:
>> - remove redundant fd closing (Marcin)
>> - move helper to xe_sriov_debugfs lib (Marcin)
>>
>> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
>> Reviewed-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>> ---
>> lib/xe/xe_sriov_debugfs.c | 78 +++++++++++++++++++++++++++++++++++++++
>> lib/xe/xe_sriov_debugfs.h | 5 +++
>> 2 files changed, 83 insertions(+)
>>
>> diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c
>> index abb1bf7d5..fb8a7c3e3 100644
>> --- a/lib/xe/xe_sriov_debugfs.c
>> +++ b/lib/xe/xe_sriov_debugfs.c
>> @@ -471,3 +471,81 @@ DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool *,
>> get_boolean, __igt_sysfs_get_boolean)
>> * Return: 0 on success, negative error code on failure.
>> */
>> DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool, set_boolean,
>> __igt_sysfs_set_boolean)
>> +
>> +
>
> CHECK:LINE_SPACING: Please don't use multiple blank lines
>
>
>> +/**
>> + * __xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
>> + * @vf: VF device file descriptor
>> + * @res: Shared resource type (see enum xe_sriov_shared_res)
>> + * @gt_num: GT number
>> + * @value: Pointer to store the read value
>> + *
>> + * Reads the specified shared resource @res from selfconfig of given
>> VF device
>> + * @vf on GT @gt_num.
>> + *
>> + * Return: 0 on success, negative error code on failure.
>> + */
>> +int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum
>> xe_sriov_shared_res res,
>> + unsigned int gt_num, uint64_t *value)
>
> CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
>
>> +{
>> + FILE *file;
>> + size_t n = 0;
>> + char *line = NULL;
>> + int fd, ret = 0;
>> +
>> + fd = igt_debugfs_gt_open(vf, gt_num, "vf/self_config", O_RDONLY);
>> + if (fd < 0)
>> + return fd;
>> + file = fdopen(fd, "r");
>> + if (!file) {
>> + close(fd);
>> + return -errno;
>> + }
>> +
>> + while (getline(&line, &n, file) >= 0) {
>> + switch (res) {
>> + case XE_SRIOV_SHARED_RES_CONTEXTS:
>> + ret = sscanf(line, "GuC contexts: %lu", value);
>> + break;
>> + case XE_SRIOV_SHARED_RES_DOORBELLS:
>> + ret = sscanf(line, "GuC doorbells: %lu", value);
>> + break;
>> + case XE_SRIOV_SHARED_RES_GGTT:
>> + ret = sscanf(line, "GGTT size: %lu", value);
>> + break;
>> + case XE_SRIOV_SHARED_RES_LMEM:
>> + ret = sscanf(line, "LMEM size: %lu", value);
>> + break;
>> + }
>> +
>> + if (ret > 0)
>> + break;
>> + }
>> +
>> + free(line);
>> + fclose(file);
>> +
>> + return ret ? 0 : -1;
>> +}
>> +/**
>
> CHECK:LINE_SPACING: Please use a blank line after function/struct/union/
> enum declarations
>
>> + * xe_sriov_vf_debugfs_get_selfconfig - Read VF's configuration data.
>> + * @pf: PF device file descriptor
>> + * @res: Shared resource type (see enum xe_sriov_shared_res)
>> + * @gt_num: GT number
>> + *
>> + * A throwing version of __xe_sriov_vf_debugfs_get_selfconfig().
>> + * Instead of returning an error code, it returns the quota value and
>> asserts
>> + * in case of an error.
>> + *
>> + * Return: The quota for the given shared resource.
>> + * Asserts in case of failure.
>> + */
>> +uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum
>> xe_sriov_shared_res res,
>> + unsigned int gt_num)
>
> CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
>
LGTM, with some style corrections.
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>> +{
>> + uint64_t value;
>> +
>> + igt_fail_on(__xe_sriov_vf_debugfs_get_selfconfig(vf, res, gt_num,
>> &value));
>> +
>> + return value;
>> +}
>> diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h
>> index cd5f932be..4983afbb3 100644
>> --- a/lib/xe/xe_sriov_debugfs.h
>> +++ b/lib/xe/xe_sriov_debugfs.h
>> @@ -39,4 +39,9 @@ int __xe_sriov_pf_debugfs_set_boolean(int pf,
>> unsigned int vf_num,
>> unsigned int gt_num, const char *attr,
>> bool value);
>> +int __xe_sriov_vf_debugfs_get_selfconfig(int vf, enum
>> xe_sriov_shared_res res,
>> + unsigned int gt_num, uint64_t *value);
>> +uint64_t xe_sriov_vf_debugfs_get_selfconfig(int vf, enum
>> xe_sriov_shared_res res,
>> + unsigned int gt_num);
>> +
>> #endif /* __XE_SRIOV_DEBUGFS_H__ */
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range
2025-02-07 9:40 ` [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range Lukasz Laguna
@ 2025-02-11 11:23 ` Bernatowicz, Marcin
0 siblings, 0 replies; 13+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-11 11:23 UTC (permalink / raw)
To: Lukasz Laguna, igt-dev
Cc: satyanarayana.k.v.p, michal.wajdeczko, adam.miszczak,
jakub1.kolakowski
On 2/7/2025 10:40 AM, Lukasz Laguna wrote:
> Helper allows to iterate over VFs within the specified range.
>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> lib/igt_sriov_device.h | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
> index de25a7d98..c12a8cf6c 100644
> --- a/lib/igt_sriov_device.h
> +++ b/lib/igt_sriov_device.h
> @@ -86,6 +86,24 @@ igt_sriov_random_vf_in_range(int pf_fd, unsigned int start, unsigned int end)
> ++__vf_num)
> #define for_each_sriov_num_vfs for_each_sriov_vf
>
> +/**
> + * for_each_sriov_vf_in_range - Iterate over VFs in a specified range
> + * @__pf_fd: PF device file descriptor
> + * @__start: Starting VF number in the range
> + * @__end: Ending VF number in the range
> + * @__vf_num: Variable to store the random VF number
> + *
> + * For loop that iterates over VFs associated with given PF @__pf_fd,
> + * within the specified range [__start, __end]. The loop runs only if
> + * the range is valid.
> + */
> +#define for_each_sriov_vf_in_range(__pf_fd, __start, __end, __vf_num) \
> + for (unsigned int __vf_num = __start & \
> + __is_valid_range(__start, __end, igt_sriov_get_total_vfs(__pf_fd)); \
> + __vf_num && __vf_num <= __end; \
> + ++__vf_num)
> +#define for_each_sriov_num_vfs_in_range for_each_sriov_vf_in_range
> +
Something is wrong, is the bitwise operator expected ?
Is this going to work:
for_each_sriov_vf_in_range(pf_fd, 2, 7, vf) ?
Maybe
#define for_each_sriov_vf_in_range(__pf_fd, __start, __end, __vf_num) \
for (unsigned int __vf_num = ((__is_valid_range((__start), (__end),
igt_sriov_get_total_vfs(__pf_fd))) ?
(__start) : 0); \
__vf_num && __vf_num <= (__end); ++__vf_num)
--
marcin
> /**
> * for_random_sriov_vf_in_range - Iterate over a random VF in a specified range
> * @__pf_fd: PF device file descriptor
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-02-11 11:23 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-07 9:40 [PATCH i-g-t v2 0/4] Verify VF configuration data against provisioned values Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 1/4] lib/xe/xe_sriov_debugfs: Add helper to read VF's configuration data Lukasz Laguna
2025-02-10 10:43 ` Bernatowicz, Marcin
2025-02-10 10:57 ` Bernatowicz, Marcin
2025-02-07 9:40 ` [PATCH i-g-t v2 2/4] lib/xe/xe_sriov_provisioning: Add helper to get VF's provisioned quota Lukasz Laguna
2025-02-07 9:40 ` [PATCH i-g-t v2 3/4] lib/igt_sriov_device: Add helper to iterate over VFs in specified range Lukasz Laguna
2025-02-11 11:23 ` Bernatowicz, Marcin
2025-02-07 9:40 ` [PATCH i-g-t v2 4/4] tests/xe_sriov_auto_provisioning: Add subtest to verify VF's configuration Lukasz Laguna
2025-02-10 10:52 ` Bernatowicz, Marcin
2025-02-08 0:26 ` ✓ i915.CI.BAT: success for Verify VF configuration data against provisioned values (rev2) Patchwork
2025-02-08 1:22 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-02-08 16:45 ` ✗ i915.CI.Full: " Patchwork
2025-02-08 19:19 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox