* [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly
@ 2024-12-04 22:23 Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 1/4] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Jonathan Cavitt @ 2024-12-04 22:23 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar, tejas.upadhyay
The xe_sysfs_timeslice_duration, xe_sysfs_preempt_timeout, and
xe_sysfs_scheduler tests do not correctly restore modified sysfs params on
test failure.
Additionally, xe_sysfs_timeslice_duration modifies but does not restore
preempt_timeout_us.
Finally, while xe_sysfs_scheduler does attempt to restore all modified
sysfs params at the end of the tests, no guarantee is made that the
restorations are successful.
Repair these issues.
v3: Fix several formatting issues (Kamil)
v4: Do not compare possibly unassigned variable (Kamil)
Whitespace and commit name fixes (Kamil)
v5: Add new helper funciton, igt_sysfs_get_next_engine
Fix igt_sysfs_scanf/printf usage in tests (Kamil)
v6: Replace helper function igt_sysfs_get_next_engine with new helper
functions that return and destroy engine lists (Kamil)
v7: Also fix xe_sysfs_scheduler
v8: Update igt_sysfs_get_engine_list to no longer require reporting
size (Kamil)
Remove assertion for some sysfs writes to succeed, as we only
require that the end result is correct.
v9: Store engine lists (Kamil)
v10: Minor formatting fix
Jonathan Cavitt (4):
lib/igt_sysfs: Add engine list helpers
tests/intel/xe_sysfs*: Restore values on test failure
tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored
lib/igt_sysfs.c | 61 ++++++++++++++++
lib/igt_sysfs.h | 3 +
tests/intel/xe_sysfs_preempt_timeout.c | 65 ++++++++++++++---
tests/intel/xe_sysfs_scheduler.c | 89 ++++++++++++++++++++---
tests/intel/xe_sysfs_timeslice_duration.c | 81 ++++++++++++++++++---
5 files changed, 269 insertions(+), 30 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v10 1/4] lib/igt_sysfs: Add engine list helpers
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
@ 2024-12-04 22:23 ` Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 2/4] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
` (5 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Jonathan Cavitt @ 2024-12-04 22:23 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar, tejas.upadhyay
Create two new helper functions, igt_sysfs_get_engine_list and
igt_sysfs_free_engine_list, that create and destroy lists of open
engines, respectively. The list created by igt_sysfs_get_engine_list
can be used to iterate over the set of engines in sysfs/engines and must
be freed by igt_sysfs_free_engine_list after use.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_sysfs.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 3 +++
2 files changed, 64 insertions(+)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 00d5822fd3..eaf8fd8829 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1307,6 +1307,67 @@ static uint16_t xe_get_engine_class(char *name)
return class;
}
+/**
+ * igt_sysfs_get_engine_list:
+ * @engines: fd of the directory engine
+ *
+ * Iterates over sysfs/engines and returns an array of
+ * opened engines. The user will be in charge of closing
+ * the opened engines.
+ *
+ * The returned array will always be terminated by a -1.
+ */
+int *igt_sysfs_get_engine_list(int engines)
+{
+ struct dirent *de;
+ DIR *dir;
+ const int array_max = 16;
+ int *ret = calloc(array_max, sizeof(int));
+ int size = 0;
+
+ igt_assert(ret);
+
+ lseek(engines, 0, SEEK_SET);
+
+ dir = fdopendir(engines);
+ if (!dir)
+ close(engines);
+
+ while ((de = readdir(dir))) {
+ if (*de->d_name == '.')
+ continue;
+ igt_assert_lt(size, array_max);
+ ret[size] = openat(engines, de->d_name, O_RDONLY);
+ if (ret[size] < 0) {
+ ret[size] = 0;
+ continue;
+ }
+ size += 1;
+ }
+
+ igt_assert_lt(size, array_max);
+ ret[size] = -1;
+
+ return ret;
+}
+
+/**
+ * igt_sysfs_free_engine_list:
+ * @list: list of opened engines
+ * @size: number of engines in list
+ *
+ * Helper for cleaning up after igt_sysfs_get_engine_list.
+ * Closes all engines in list before freeing the list.
+ */
+void igt_sysfs_free_engine_list(int *list)
+{
+ int i = 0;
+
+ while (list[i] != -1)
+ close(list[i++]);
+ free(list);
+}
+
/**
* igt_sysfs_engines:
* @xe: fd of the device
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 54a4087918..86345f3d1b 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -168,6 +168,9 @@ typedef struct igt_sysfs_rw_attr {
void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw);
+int *igt_sysfs_get_engine_list(int engines);
+void igt_sysfs_free_engine_list(int *list);
+
void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char **property,
void (*test)(int, int, const char **, uint16_t, int));
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v10 2/4] tests/intel/xe_sysfs*: Restore values on test failure
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 1/4] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
@ 2024-12-04 22:23 ` Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
` (4 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Jonathan Cavitt @ 2024-12-04 22:23 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar, tejas.upadhyay
The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration
modify the values of preempt_timeout_us and timeslice_duration_us,
respectively. However, on a test failure, it is possible that these
values may remain in their modified states, resulting in the values
being used in future tests and causing unexpected behavior.
Save the respective modified values before starting the test and attempt
to restore the values on test exit.
v2:
- Fix some formatting issues (Kamil)
- Abort if value restore fails (Kamil)
- Directly call igt_sysfs_printf on exit to avoid duplicating on helper
(Kamil)
v3:
- Do not compare potentially unassigned variable (Kamil)
- Whitespace and commit name fixes (Kamil)
v4:
- Fix igt_sysfs_scanf/printf usage in tests (Kamil)
v5:
- Store engine lists (Kamil)
Suggested-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_preempt_timeout.c | 65 +++++++++++++++++++----
tests/intel/xe_sysfs_timeslice_duration.c | 64 ++++++++++++++++++----
2 files changed, 110 insertions(+), 19 deletions(-)
diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
index 7fa0dfcdf7..139f68d22b 100644
--- a/tests/intel/xe_sysfs_preempt_timeout.c
+++ b/tests/intel/xe_sysfs_preempt_timeout.c
@@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
set_preempt_timeout(engine, saved);
}
+#define MAX_GTS 8
igt_main
{
static const struct {
@@ -183,8 +184,11 @@ igt_main
"preempt_timeout_min",
"preempt_timeout_max"}, };
int count = sizeof(property) / sizeof(property[0]);
+ int gt_count = 0;
int fd = -1, sys_fd, gt;
- int engines_fd = -1, gt_fd = -1;
+ int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
+ int *engine_list[MAX_GTS];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -192,26 +196,67 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ int *list, i = 0;
+
+ igt_require(gt_count < MAX_GTS);
+
+ gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
+ igt_require(gt_fd[gt_count] != -1);
+ engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
+ igt_require(engines_fd[gt_count] != -1);
+
+ list = igt_sysfs_get_engine_list(engines_fd[gt_count]);
+
+ while (list[i] != -1) {
+ igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
+ &pts[gt_count][i]) == 1);
+ i++;
+ }
+
+ igt_require(i > 0);
+ engine_list[gt_count] = list;
+ gt_count++;
+ }
}
for (int i = 0; i < count; i++) {
for (typeof(*tests) *t = tests; t->name; t++) {
igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ int j = 0;
xe_for_each_gt(fd, gt) {
- gt_fd = xe_sysfs_gt_open(fd, gt);
- igt_require(gt_fd != -1);
- engines_fd = openat(gt_fd, "engines", O_RDONLY);
- igt_require(engines_fd != -1);
-
- igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
- t->fn);
- close(engines_fd);
- close(gt_fd);
+ int e = engines_fd[j];
+
+ igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = 0; i < gt_count; i++) {
+ int *list, j = 0;
+
+ list = engine_list[i];
+
+ while (list[j] != -1) {
+ unsigned int store = UINT_MAX;
+
+ igt_sysfs_printf(list[j], "preempt_timeout_us",
+ "%u", pts[i][j]);
+ igt_sysfs_scanf(list[j], "preempt_timeout_us",
+ "%u", &store);
+ igt_abort_on_f(store != pts[i][j],
+ "preempt_timeout_us not restored!\n");
+ j++;
+ }
+
+ igt_sysfs_free_engine_list(list);
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
+
drm_close_driver(fd);
}
}
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index cf95a3ac1c..899093a9df 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
set_timeslice_duration(engine, saved);
}
+#define MAX_GTS 8
igt_main
{
static const struct {
@@ -155,8 +156,11 @@ igt_main
"timeslice_duration_min",
"timeslice_duration_max"}, };
int count = sizeof(property) / sizeof(property[0]);
+ int gt_count = 0;
int fd = -1, sys_fd, gt;
- int engines_fd = -1, gt_fd = -1;
+ int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
+ int *engine_list[MAX_GTS];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -164,25 +168,67 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ int *list, i = 0;
+
+ igt_require(gt_count < MAX_GTS);
+
+ gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
+ igt_require(gt_fd[gt_count] != -1);
+ engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
+ igt_require(engines_fd[gt_count] != -1);
+
+ list = igt_sysfs_get_engine_list(engines_fd[gt_count]);
+
+ while (list[i] != -1) {
+ igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
+ &tds[gt_count][i]) == 1);
+ i++;
+ }
+
+ igt_require(i > 0);
+ engine_list[gt_count] = list;
+ gt_count++;
+ }
}
for (int i = 0; i < count; i++) {
for (typeof(*tests) *t = tests; t->name; t++) {
igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ int j = 0;
xe_for_each_gt(fd, gt) {
- gt_fd = xe_sysfs_gt_open(fd, gt);
- igt_require(gt_fd != -1);
- engines_fd = openat(gt_fd, "engines", O_RDONLY);
- igt_require(engines_fd != -1);
- igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
- t->fn);
- close(engines_fd);
- close(gt_fd);
+ int e = engines_fd[j];
+
+ igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = 0; i < gt_count; i++) {
+ int *list, j = 0;
+
+ list = engine_list[i];
+
+ while (list[j] != -1) {
+ unsigned int store = UINT_MAX;
+
+ igt_sysfs_printf(list[j], "timeslice_duration_us",
+ "%u", tds[i][j]);
+ igt_sysfs_scanf(list[j], "timeslice_duration_us",
+ "%u", &store);
+ igt_abort_on_f(store != tds[i][j],
+ "timeslice_duration_us not restored!\n");
+ j++;
+ }
+
+ igt_sysfs_free_engine_list(list);
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
+
drm_close_driver(fd);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 1/4] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 2/4] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
@ 2024-12-04 22:23 ` Jonathan Cavitt
2024-12-05 12:15 ` Upadhyay, Tejas
2024-12-04 22:23 ` [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored Jonathan Cavitt
` (3 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Jonathan Cavitt @ 2024-12-04 22:23 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar, tejas.upadhyay
The subtests of sysfs_timeslice_duration modify the preempt_timeout_us
and timeslice_duration_us values. However, while the test does restore
the timeslice_duration_us value at the end of execution, it does not do
the same for preempt_timeout_us. Because the value is not properly
restored, future tests can end up using the unexpected preempt timeout
value and thus have unexpected behavior.
Save and restore the preempt_timeout_us value during the test.
This fix does not apply to xe_sysfs_preempt_timeout because only the
preempt_timeout_us is modified during those tests, and the value is
correcty restored before the tests end.
v2: Also restore preempt_timeout_us on test failure (Kamil)
v3: Abort on restore failure (Kamil)
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_timeslice_duration.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index 899093a9df..752672691f 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_
static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt)
{
uint64_t delays[] = { 1000, 50000, 100000, 500000 };
- unsigned int saved;
+ unsigned int saved, old_pt;
uint64_t elapsed;
uint64_t epsilon;
+ igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1);
igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1);
igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", property[0], saved);
@@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
}
set_timeslice_duration(engine, saved);
+ igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt));
+ igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
+ igt_assert_eq(saved, old_pt);
}
#define MAX_GTS 8
@@ -159,6 +163,7 @@ igt_main
int gt_count = 0;
int fd = -1, sys_fd, gt;
int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
int *engine_list[MAX_GTS];
@@ -184,6 +189,8 @@ igt_main
while (list[i] != -1) {
igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
&tds[gt_count][i]) == 1);
+ igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
+ &pts[gt_count][i]) == 1);
i++;
}
@@ -215,8 +222,16 @@ igt_main
while (list[j] != -1) {
unsigned int store = UINT_MAX;
+ igt_sysfs_printf(list[j], "preempt_timeout_us",
+ "%u", pts[i][j]);
+ igt_sysfs_scanf(list[j], "preempt_timeout_us",
+ "%u", &store);
+ igt_abort_on_f(store != pts[i][j],
+ "preempt_timeout_us not restored!\n");
+
+ store = UINT_MAX;
igt_sysfs_printf(list[j], "timeslice_duration_us",
- "%u", tds[i][j]);
+ "%u", tds[i][j]);
igt_sysfs_scanf(list[j], "timeslice_duration_us",
"%u", &store);
igt_abort_on_f(store != tds[i][j],
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (2 preceding siblings ...)
2024-12-04 22:23 ` [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-12-04 22:23 ` Jonathan Cavitt
2024-12-05 12:17 ` Upadhyay, Tejas
2024-12-04 23:25 ` ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Jonathan Cavitt @ 2024-12-04 22:23 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar, tejas.upadhyay
The xe_sysfs_scheduler tests modify various sysfs parameters. At the
end of the test, the sysfs parameters are restored, but we do not
currently assert that the restoration process completes successfully.
Assert the restoration is successful.
Additionally, when the tests fail, it is possible that the various
modified sysfs parameters may be left in modified states, which can
cause future tests to behave unpredictably. At the end of the test,
attempt to restore all modified sysfs parameters to their original
values, aborting all tests if this is unsuccessful.
v2:
- Store engine lists (Kamil)
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_scheduler.c | 89 ++++++++++++++++++++++++++++----
1 file changed, 79 insertions(+), 10 deletions(-)
diff --git a/tests/intel/xe_sysfs_scheduler.c b/tests/intel/xe_sysfs_scheduler.c
index 947dbdbc9b..89c87c2eed 100644
--- a/tests/intel/xe_sysfs_scheduler.c
+++ b/tests/intel/xe_sysfs_scheduler.c
@@ -107,10 +107,19 @@ static void test_min_max(int xe, int engine, const char **property,
/* Reset property, max, min to original values */
igt_sysfs_printf(engine, property[0], "%d", store);
+ igt_sysfs_scanf(engine, property[0], "%u", &set);
+ igt_assert_eq(set, store);
+
igt_sysfs_printf(engine, property[1], "%d", default_min);
+ igt_sysfs_scanf(engine, property[1], "%u", &set);
+ igt_assert_eq(set, default_min);
+
igt_sysfs_printf(engine, property[2], "%d", default_max);
+ igt_sysfs_scanf(engine, property[2], "%u", &set);
+ igt_assert_eq(set, default_max);
}
+#define MAX_GTS 8
igt_main
{
static const struct {
@@ -126,10 +135,15 @@ igt_main
{"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"},
{"job_timeout_ms", "job_timeout_min", "job_timeout_max"},
};
+
+ unsigned int store[MAX_GTS][3][3];
int count = sizeof(property) / sizeof(property[0]);
+ int gt_count = 0;
int xe = -1;
int sys_fd;
int gt;
+ int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ int *engine_list[MAX_GTS];
igt_fixture {
xe = drm_open_driver(DRIVER_XE);
@@ -138,28 +152,83 @@ igt_main
sys_fd = igt_sysfs_open(xe);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(xe, gt) {
+ int *list, i = 0;
+
+ igt_require(gt_count < MAX_GTS);
+
+ gt_fd[gt_count] = xe_sysfs_gt_open(xe, gt);
+ igt_require(gt_fd[gt_count] != -1);
+ engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
+ igt_require(engines_fd[gt_count] != -1);
+
+ list = igt_sysfs_get_engine_list(engines_fd[gt_count]);
+
+ while (list[i] != -1) {
+ for (int j = 0; j < count; j++) {
+ const char **pl = property[j];
+
+ for (int k = 0; k < 3; k++) {
+ unsigned int *loc = &store[i][j][k];
+
+ igt_require(igt_sysfs_scanf(list[i], pl[k],
+ "%u", loc) == 1);
+ }
+ }
+ i++;
+ }
+
+ igt_require(i > 0);
+ engine_list[gt_count] = list;
+ gt_count++;
+ }
}
for (int i = 0; i < count; i++) {
for (typeof(*tests) *t = tests; t->name; t++) {
igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ int j = 0;
xe_for_each_gt(xe, gt) {
- int engines_fd = -1;
- int gt_fd = -1;
-
- gt_fd = xe_sysfs_gt_open(xe, gt);
- igt_require(gt_fd != -1);
- engines_fd = openat(gt_fd, "engines", O_RDONLY);
- igt_require(engines_fd != -1);
+ int e = engines_fd[j];
- igt_sysfs_engines(xe, engines_fd, 0, 0, property[i], t->fn);
- close(engines_fd);
- close(gt_fd);
+ igt_sysfs_engines(xe, e, 0, 0, property[i], t->fn);
+ j++;
}
}
}
}
+
igt_fixture {
+ for (int gtn = gt_count - 1; gtn >= 0; gtn--) {
+ int *list, i = 0;
+
+ list = engine_list[gtn];
+
+ while (list[i] != -1) {
+ int e = list[i];
+
+ for (int j = count - 1; j >= 0; j--) {
+ const char **pl = property[j];
+
+ for (int k = 2; k >= 0; k--) {
+ unsigned int read = UINT_MAX;
+ unsigned int val = store[i][j][k];
+
+ igt_sysfs_printf(e, pl[k], "%u", val);
+ igt_sysfs_scanf(e, pl[k], "%u", &read);
+ igt_abort_on_f(read != val,
+ "%s not restored!\n", pl[k]);
+ }
+ }
+ i++;
+ }
+
+ igt_sysfs_free_engine_list(list);
+ close(engines_fd[gtn]);
+ close(gt_fd[gtn]);
+ }
+
xe_device_put(xe);
close(xe);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (3 preceding siblings ...)
2024-12-04 22:23 ` [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored Jonathan Cavitt
@ 2024-12-04 23:25 ` Patchwork
2024-12-06 17:14 ` Cavitt, Jonathan
2024-12-04 23:30 ` ✓ Xe.CI.BAT: success " Patchwork
2024-12-05 3:34 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2024-12-04 23:25 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/142138/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8138 -> IGTPW_12247
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12247 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12247, 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_12247/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12247:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/fi-kbl-7567u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/fi-kbl-7567u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
Known issues
------------
Here are the changes found in IGTPW_12247 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#9318])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#2190])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4083])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3282])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][12] -> [FAIL][13] ([i915#12903])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#11681] / [i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][15] -> [ABORT][16] ([i915#12061]) +1 other test abort
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [PASS][17] -> [ABORT][18] ([i915#12061]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][19] -> [ABORT][20] ([i915#12061]) +1 other test abort
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#4212]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_chamelium_edid@vga-edid-read:
- bat-dg2-13: NOTRUN -> [SKIP][24] ([Intel XE#484] / [i915#4550]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adls-6: NOTRUN -> [SKIP][26] ([i915#4103]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-jsl-1: NOTRUN -> [SKIP][27] ([i915#4103]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#3840])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_dsc@dsc-basic.html
- bat-adls-6: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#3840])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9886])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
- bat-adls-6: NOTRUN -> [SKIP][32]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][33]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][34] ([i915#5274])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][35] ([i915#5354])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
- bat-adls-6: NOTRUN -> [SKIP][36] ([i915#5354])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][37] ([i915#1072] / [i915#9732]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][38] ([i915#1072] / [i915#9732]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adls-6: NOTRUN -> [SKIP][40] ([i915#3555])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][41] ([i915#3555])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][42] ([i915#3708])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][43] ([i915#3291]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-14: NOTRUN -> [SKIP][44] ([i915#3708] / [i915#4077]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-14: NOTRUN -> [SKIP][45] ([i915#3291] / [i915#3708]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][46] ([i915#12903]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][48] ([i915#12061]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-mtlp-8/igt@i915_selftest@live.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][50] ([i915#12061]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-5/igt@i915_selftest@live@workarounds.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [ABORT][52] ([i915#12061]) -> [PASS][53] +1 other test pass
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-6/igt@i915_selftest@live@workarounds.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8138 -> IGTPW_12247
* Linux: CI_DRM_15786 -> CI_DRM_15789
CI-20190529: 20190529
CI_DRM_15786: c8df5caf278df4f9ca0aba627047c5ee4318fc0d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15789: a8f3624ace7e2f401299e21e277614e097a55481 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12247: 3ebe7720a14eb5fbf5bf1a323ea93d990f2b85f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8138: 8138
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for test/intel/xe_sysfs: Restore sysfs params correctly
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (4 preceding siblings ...)
2024-12-04 23:25 ` ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
@ 2024-12-04 23:30 ` Patchwork
2024-12-05 3:34 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-12-04 23:30 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4690 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/142138/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8138_BAT -> XEIGTPW_12247_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (6 -> 7)
------------------------------
Additional (1): bat-bmg-1
Known issues
------------
Here are the changes found in XEIGTPW_12247_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-1: NOTRUN -> [SKIP][1] ([Intel XE#2233])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2244])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@kms_dsc@dsc-basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-1: NOTRUN -> [SKIP][3] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- bat-bmg-1: NOTRUN -> [SKIP][6] ([Intel XE#1192]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#1420])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-1: NOTRUN -> [SKIP][8] ([Intel XE#2245])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-1: NOTRUN -> [SKIP][9] ([Intel XE#2236])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#3342])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-2: [SKIP][11] ([Intel XE#1192]) -> [PASS][12] +2 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
Build changes
-------------
* IGT: IGT_8138 -> IGTPW_12247
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2321-a8f3624ace7e2f401299e21e277614e097a55481
IGTPW_12247: 3ebe7720a14eb5fbf5bf1a323ea93d990f2b85f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2321-a8f3624ace7e2f401299e21e277614e097a55481: a8f3624ace7e2f401299e21e277614e097a55481
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/index.html
[-- Attachment #2: Type: text/html, Size: 5568 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.Full: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (5 preceding siblings ...)
2024-12-04 23:30 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-12-05 3:34 ` Patchwork
2024-12-06 17:13 ` Cavitt, Jonathan
6 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2024-12-05 3:34 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83185 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/142138/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8138_full -> XEIGTPW_12247_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12247_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12247_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_12247_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@kms_async_flips@test-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][3] +17 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_exec_threads@threads-rebind-bindexecqueue:
- shard-bmg: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_exec_threads@threads-rebind-bindexecqueue.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_threads@threads-rebind-bindexecqueue.html
#### Warnings ####
* igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256:
- shard-bmg: [DMESG-FAIL][6] ([Intel XE#3468]) -> [DMESG-FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32]) ([Intel XE#3691]) -> ([FAIL][33], [FAIL][34], [FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html
New tests
---------
New tests have been introduced between XEIGT_8138_full and XEIGTPW_12247_full:
### New IGT tests (13) ###
* igt@kms_psr@fbc-psr-cursor-plane-move@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.01] s
* igt@kms_psr@fbc-psr-no-drrs@edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.81] s
* igt@kms_psr@fbc-psr-primary-blt@edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.79] s
* igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_psr@fbc-psr-sprite-render@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_psr@fbc-psr-suspend@edp-1:
- Statuses : 1 abort(s)
- Exec time: [7.27] s
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_psr@psr-primary-blt@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.71] s
* igt@kms_psr@psr-primary-page-flip@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_psr@psr-sprite-blt@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_psr@psr-suspend@edp-1:
- Statuses : 1 abort(s)
- Exec time: [3.49] s
* igt@kms_psr@psr2-sprite-plane-onoff@edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
Known issues
------------
Here are the changes found in XEIGTPW_12247_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1125])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@crc:
- shard-bmg: [PASS][59] -> [DMESG-FAIL][60] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_async_flips@crc.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][61] -> [FAIL][62] ([Intel XE#3557])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#1426]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2327]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [DMESG-FAIL][66] ([Intel XE#3468]) +6 other tests dmesg-fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1407]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1124]) +10 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#607])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1428]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#610]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2328])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1124]) +12 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2191]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1512]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#367]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#367])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2887]) +23 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2652] / [Intel XE#787]) +26 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#3432])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2887]) +24 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#314]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#306]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_chamelium_color@degamma.html
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2325]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2252]) +13 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#373]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#307])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2390])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][90] ([Intel XE#1178]) +3 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1468])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2320]) +8 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1424]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2321]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2321]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2:
- shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#1727]) +1 other test incomplete
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#309]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#323]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2286]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: NOTRUN -> [INCOMPLETE][101] ([Intel XE#1727] / [Intel XE#3226])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2244])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2882]) +1 other test fail
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][104] ([Intel XE#3640])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#3321]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1421]) +8 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
- shard-bmg: [PASS][107] -> [FAIL][108] ([Intel XE#2882]) +2 other tests fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#886])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#3468]) +76 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][113] ([Intel XE#2597]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1401]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1397] / [Intel XE#1745])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1397])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2293]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#651]) +19 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [FAIL][121] ([Intel XE#2333]) +19 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#656]) +52 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [INCOMPLETE][123] ([Intel XE#1727])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2311]) +45 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2313]) +39 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [INCOMPLETE][126] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#3374] / [Intel XE#3544])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1503]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#346]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#346]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2934])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2934])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2501])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#356])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: NOTRUN -> [INCOMPLETE][135] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][136] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][137] -> [INCOMPLETE][138] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-bmg: [PASS][139] -> [DMESG-FAIL][140] ([Intel XE#2705] / [Intel XE#3468])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-4.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#599])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/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_12247/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2763]) +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2763]) +19 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#870])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2391])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][147] -> [FAIL][148] ([Intel XE#718])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2505])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1439] / [Intel XE#836])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1439] / [Intel XE#3141])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes@plane-32:
- shard-bmg: [PASS][153] -> [DMESG-WARN][154] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-warn
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_pm_rpm@universal-planes@plane-32.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pm_rpm@universal-planes@plane-32.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2893]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#1489]) +13 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1406]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2414])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#3414]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2330])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#3414])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2413])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1435])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#362])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#330])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2450])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][168] -> [FAIL][169] ([Intel XE#899])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
- shard-bmg: [PASS][170] -> [DMESG-FAIL][171] ([Intel XE#3468]) +11 other tests dmesg-fail
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2168])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1499]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1499])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#756]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#756]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#1091] / [Intel XE#2849])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: NOTRUN -> [ABORT][178] ([Intel XE#3673]) +2 other tests abort
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1062])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#944]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2905]) +10 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@exec-queue-placements:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#2905]) +11 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#688]) +14 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][184] ([Intel XE#2364])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][185] ([Intel XE#1473])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][186] -> [TIMEOUT][187] ([Intel XE#1473])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind:
- shard-bmg: NOTRUN -> [DMESG-WARN][188] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind:
- shard-bmg: [PASS][189] -> [DMESG-WARN][190] ([Intel XE#1727]) +1 other test dmesg-warn
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2322]) +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#1392]) +8 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_reset@gt-reset:
- shard-bmg: NOTRUN -> [DMESG-WARN][193] ([Intel XE#1727])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_exec_reset@gt-reset.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [DMESG-WARN][194] ([Intel XE#3468]) +28 other tests dmesg-warn
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: NOTRUN -> [DMESG-WARN][195] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][196] -> [DMESG-WARN][197] ([Intel XE#3467] / [Intel XE#3468])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][198] ([Intel XE#3467]) +1 other test dmesg-warn
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#2833])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2459] / [Intel XE#2596])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#378])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@xe_module_load@force-load.html
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2457])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227]) -> ([PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [SKIP][252], [PASS][253]) ([Intel XE#2457])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html
* igt@xe_module_load@reload:
- shard-bmg: [PASS][254] -> [DMESG-WARN][255] ([Intel XE#3467])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@reload.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@reload.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#1420] / [Intel XE#2838])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][257] ([Intel XE#2236])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][258] ([Intel XE#979])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][259] ([Intel XE#2284] / [Intel XE#366])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_pm@d3cold-basic.html
- shard-bmg: NOTRUN -> [SKIP][260] ([Intel XE#2284]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][261] ([Intel XE#1358] / [Intel XE#1616])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][262] ([Intel XE#584]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][263] -> [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][265] ([Intel XE#579])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][266] ([Intel XE#579])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][267] ([Intel XE#944]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [FAIL][268] ([Intel XE#1701]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][270] ([Intel XE#3468]) -> [PASS][271] +21 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][272] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_color@deep-color:
- shard-bmg: [DMESG-WARN][274] ([Intel XE#3468] / [Intel XE#877]) -> [PASS][275] +1 other test pass
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@deep-color.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_color@deep-color.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [INCOMPLETE][276] ([Intel XE#3468]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
- shard-bmg: [DMESG-FAIL][278] ([Intel XE#2705]) -> [PASS][279] +1 other test pass
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [ABORT][280] ([Intel XE#3468]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][282] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][283] +3 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-bmg: [DMESG-WARN][284] -> [PASS][285] +2 other tests pass
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [FAIL][286] ([Intel XE#886]) -> [PASS][287] +2 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [INCOMPLETE][288] ([Intel XE#2635]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-dp2:
- shard-bmg: [FAIL][290] ([Intel XE#2882]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@a-dp2.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@a-dp2.html
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
- shard-bmg: [INCOMPLETE][292] -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [INCOMPLETE][294] ([Intel XE#3452]) -> [PASS][295] +1 other test pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-none.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_rpm@legacy-planes@plane-59:
- shard-lnl: [DMESG-WARN][296] ([Intel XE#3184]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-59.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_pm_rpm@legacy-planes@plane-59.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][298] ([Intel XE#899]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [FAIL][300] ([Intel XE#1081]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
- shard-bmg: [FAIL][302] ([Intel XE#1081]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [DMESG-WARN][304] ([Intel XE#3468]) -> [PASS][305] +117 other tests pass
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][306] ([Intel XE#1727]) -> [PASS][307] +1 other test pass
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][308] ([Intel XE#3343]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-lnl: [DMESG-WARN][310] -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][312] ([Intel XE#3467]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [DMESG-WARN][314] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][316] ([Intel XE#1192]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][318] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][319] +6 other tests pass
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@d3hot-mocs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [DMESG-WARN][320] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s3-basic-exec.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_pm@s3-basic-exec.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][322] ([Intel XE#2919]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_content_protection@uevent:
- shard-bmg: [DMESG-FAIL][324] ([Intel XE#3468]) -> [FAIL][325] ([Intel XE#1188]) +1 other test fail
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_content_protection@uevent.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][326] ([Intel XE#1695]) -> [DMESG-FAIL][327] ([Intel XE#3468])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
- shard-bmg: [DMESG-FAIL][328] ([Intel XE#2705]) -> [DMESG-FAIL][329] ([Intel XE#2705] / [Intel XE#3468])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [INCOMPLETE][330] ([Intel XE#1727] / [Intel XE#2050]) -> [FAIL][331] ([Intel XE#2333]) +1 other test fail
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [FAIL][332] ([Intel XE#2333]) -> [INCOMPLETE][333] ([Intel XE#1727] / [Intel XE#2050])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][334] ([Intel XE#3468]) -> [FAIL][335] ([Intel XE#2333]) +9 other tests fail
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-bmg: [FAIL][336] ([Intel XE#2333]) -> [DMESG-FAIL][337] ([Intel XE#3468]) +7 other tests dmesg-fail
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][338] ([Intel XE#1430]) -> [DMESG-FAIL][339] ([Intel XE#3468])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][340] ([Intel XE#1729]) -> [SKIP][341] ([Intel XE#2426])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][342] ([Intel XE#2426]) -> [SKIP][343] ([Intel XE#2509])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][344] ([Intel XE#1473]) -> [TIMEOUT][345] ([Intel XE#1473])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][346] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][347] ([Intel XE#3343])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][348] ([Intel XE#3467]) -> [DMESG-WARN][349] ([Intel XE#3467] / [Intel XE#3468])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@many-reload.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][350] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][351] ([Intel XE#3673])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@s2idle-exec-after.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][352] ([Intel XE#1616]) -> [ABORT][353] ([Intel XE#1616] / [Intel XE#3468])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][354] -> [ABORT][355] ([Intel XE#3421])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][356] ([Intel XE#3468]) -> [DMESG-WARN][357] ([Intel XE#3467])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3691
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8138 -> IGTPW_12247
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2321-a8f3624ace7e2f401299e21e277614e097a55481
IGTPW_12247: 3ebe7720a14eb5fbf5bf1a323ea93d990f2b85f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2321-a8f3624ace7e2f401299e21e277614e097a55481: a8f3624ace7e2f401299e21e277614e097a55481
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/index.html
[-- Attachment #2: Type: text/html, Size: 96659 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-12-04 22:23 ` [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-12-05 12:15 ` Upadhyay, Tejas
2024-12-05 15:17 ` Cavitt, Jonathan
0 siblings, 1 reply; 14+ messages in thread
From: Upadhyay, Tejas @ 2024-12-05 12:15 UTC (permalink / raw)
To: Cavitt, Jonathan, igt-dev@lists.freedesktop.org, Brost, Matthew
Cc: Gupta, saurabhg, Zuo, Alex, kamil.konieczny@linux.intel.com,
Belgaumkar, Vinay
> -----Original Message-----
> From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Sent: Thursday, December 5, 2024 3:54 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg
> <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>;
> kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>
> Subject: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore
> preempt timeout
>
> The subtests of sysfs_timeslice_duration modify the preempt_timeout_us and
> timeslice_duration_us values. However, while the test does restore the
> timeslice_duration_us value at the end of execution, it does not do the same
> for preempt_timeout_us. Because the value is not properly restored, future
> tests can end up using the unexpected preempt timeout value and thus have
> unexpected behavior.
>
> Save and restore the preempt_timeout_us value during the test.
>
> This fix does not apply to xe_sysfs_preempt_timeout because only the
> preempt_timeout_us is modified during those tests, and the value is correcty
> restored before the tests end.
>
> v2: Also restore preempt_timeout_us on test failure (Kamil)
Restoring timeouts after test looks ok here, you can add my r-o-b for that. But if there is value already set via sysfs manually which is not default values then we still have chance to hit the issues we are fixing here. I have tested this manually what I am talking here.
I think restoring or setting up these timeout values to default before other igt tests like igt@xe_vm@bind-execqueues-independent is very important or else low values of these timeout set manually via sysfs (echo value > timeout) might fail the test.
Although I am not very sure storing restoring timeout values should be based on default values or not. @Brost, Matthew any input here?
Tejas
>
> v3: Abort on restore failure (Kamil)
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_sysfs_timeslice_duration.c | 19 +++++++++++++++++--
> 1 file changed, 17 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c
> b/tests/intel/xe_sysfs_timeslice_duration.c
> index 899093a9df..752672691f 100644
> --- a/tests/intel/xe_sysfs_timeslice_duration.c
> +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine,
> unsigned int timeout, uint16_ static void test_timeout(int fd, int engine, const
> char **property, uint16_t class, int gt) {
> uint64_t delays[] = { 1000, 50000, 100000, 500000 };
> - unsigned int saved;
> + unsigned int saved, old_pt;
> uint64_t elapsed;
> uint64_t epsilon;
>
> + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u",
> +&old_pt) == 1);
> igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1)
> == 1);
> igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
> igt_debug("Initial %s:%u\n", property[0], saved); @@ -140,6 +141,9
> @@ static void test_timeout(int fd, int engine, const char **property, uint16_t
> cla
> }
>
> set_timeslice_duration(engine, saved);
> + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us",
> "%u", old_pt));
> + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> + igt_assert_eq(saved, old_pt);
> }
>
> #define MAX_GTS 8
> @@ -159,6 +163,7 @@ igt_main
> int gt_count = 0;
> int fd = -1, sys_fd, gt;
> int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> + unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> int *engine_list[MAX_GTS];
>
> @@ -184,6 +189,8 @@ igt_main
> while (list[i] != -1) {
> igt_require(igt_sysfs_scanf(list[i],
> "timeslice_duration_us", "%u",
> &tds[gt_count][i])
> == 1);
> + igt_require(igt_sysfs_scanf(list[i],
> "preempt_timeout_us", "%u",
> + &pts[gt_count][i])
> == 1);
> i++;
> }
>
> @@ -215,8 +222,16 @@ igt_main
> while (list[j] != -1) {
> unsigned int store = UINT_MAX;
>
> + igt_sysfs_printf(list[j], "preempt_timeout_us",
> + "%u", pts[i][j]);
> + igt_sysfs_scanf(list[j], "preempt_timeout_us",
> + "%u", &store);
> + igt_abort_on_f(store != pts[i][j],
> + "preempt_timeout_us not
> restored!\n");
> +
> + store = UINT_MAX;
> igt_sysfs_printf(list[j],
> "timeslice_duration_us",
> - "%u", tds[i][j]);
> + "%u", tds[i][j]);
> igt_sysfs_scanf(list[j],
> "timeslice_duration_us",
> "%u", &store);
> igt_abort_on_f(store != tds[i][j],
> --
> 2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored
2024-12-04 22:23 ` [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored Jonathan Cavitt
@ 2024-12-05 12:17 ` Upadhyay, Tejas
0 siblings, 0 replies; 14+ messages in thread
From: Upadhyay, Tejas @ 2024-12-05 12:17 UTC (permalink / raw)
To: Cavitt, Jonathan, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, kamil.konieczny@linux.intel.com,
Belgaumkar, Vinay
> -----Original Message-----
> From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Sent: Thursday, December 5, 2024 3:54 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg
> <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>;
> kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>
> Subject: [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params
> are restored
>
> The xe_sysfs_scheduler tests modify various sysfs parameters. At the end of
> the test, the sysfs parameters are restored, but we do not currently assert that
> the restoration process completes successfully.
> Assert the restoration is successful.
>
> Additionally, when the tests fail, it is possible that the various modified sysfs
> parameters may be left in modified states, which can cause future tests to
> behave unpredictably. At the end of the test, attempt to restore all modified
> sysfs parameters to their original values, aborting all tests if this is
> unsuccessful.
>
> v2:
> - Store engine lists (Kamil)
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_sysfs_scheduler.c | 89 ++++++++++++++++++++++++++++----
> 1 file changed, 79 insertions(+), 10 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_scheduler.c b/tests/intel/xe_sysfs_scheduler.c
> index 947dbdbc9b..89c87c2eed 100644
> --- a/tests/intel/xe_sysfs_scheduler.c
> +++ b/tests/intel/xe_sysfs_scheduler.c
> @@ -107,10 +107,19 @@ static void test_min_max(int xe, int engine, const
> char **property,
>
> /* Reset property, max, min to original values */
> igt_sysfs_printf(engine, property[0], "%d", store);
> + igt_sysfs_scanf(engine, property[0], "%u", &set);
> + igt_assert_eq(set, store);
> +
> igt_sysfs_printf(engine, property[1], "%d", default_min);
> + igt_sysfs_scanf(engine, property[1], "%u", &set);
> + igt_assert_eq(set, default_min);
> +
> igt_sysfs_printf(engine, property[2], "%d", default_max);
> + igt_sysfs_scanf(engine, property[2], "%u", &set);
> + igt_assert_eq(set, default_max);
> }
>
> +#define MAX_GTS 8
> igt_main
> {
> static const struct {
> @@ -126,10 +135,15 @@ igt_main
> {"timeslice_duration_us",
> "timeslice_duration_min", "timeslice_duration_max"},
> {"job_timeout_ms", "job_timeout_min",
> "job_timeout_max"},
> };
> +
> + unsigned int store[MAX_GTS][3][3];
> int count = sizeof(property) / sizeof(property[0]);
> + int gt_count = 0;
> int xe = -1;
> int sys_fd;
> int gt;
> + int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> + int *engine_list[MAX_GTS];
>
> igt_fixture {
> xe = drm_open_driver(DRIVER_XE);
> @@ -138,28 +152,83 @@ igt_main
> sys_fd = igt_sysfs_open(xe);
> igt_require(sys_fd != -1);
> close(sys_fd);
> +
> + xe_for_each_gt(xe, gt) {
> + int *list, i = 0;
> +
> + igt_require(gt_count < MAX_GTS);
> +
> + gt_fd[gt_count] = xe_sysfs_gt_open(xe, gt);
> + igt_require(gt_fd[gt_count] != -1);
> + engines_fd[gt_count] = openat(gt_fd[gt_count],
> "engines", O_RDONLY);
> + igt_require(engines_fd[gt_count] != -1);
> +
> + list = igt_sysfs_get_engine_list(engines_fd[gt_count]);
> +
> + while (list[i] != -1) {
> + for (int j = 0; j < count; j++) {
> + const char **pl = property[j];
> +
> + for (int k = 0; k < 3; k++) {
> + unsigned int *loc =
> &store[i][j][k];
> +
> +
> igt_require(igt_sysfs_scanf(list[i], pl[k],
> +
> "%u", loc) == 1);
> + }
> + }
> + i++;
> + }
> +
> + igt_require(i > 0);
> + engine_list[gt_count] = list;
> + gt_count++;
> + }
> }
>
> for (int i = 0; i < count; i++) {
> for (typeof(*tests) *t = tests; t->name; t++) {
> igt_subtest_with_dynamic_f("%s-%s", property[i][0],
> t->name) {
> + int j = 0;
> xe_for_each_gt(xe, gt) {
> - int engines_fd = -1;
> - int gt_fd = -1;
> -
> - gt_fd = xe_sysfs_gt_open(xe, gt);
> - igt_require(gt_fd != -1);
> - engines_fd = openat(gt_fd, "engines",
> O_RDONLY);
> - igt_require(engines_fd != -1);
> + int e = engines_fd[j];
>
> - igt_sysfs_engines(xe, engines_fd, 0, 0,
> property[i], t->fn);
> - close(engines_fd);
> - close(gt_fd);
> + igt_sysfs_engines(xe, e, 0, 0,
> property[i], t->fn);
> + j++;
> }
> }
> }
> }
> +
> igt_fixture {
> + for (int gtn = gt_count - 1; gtn >= 0; gtn--) {
> + int *list, i = 0;
> +
> + list = engine_list[gtn];
> +
> + while (list[i] != -1) {
> + int e = list[i];
> +
> + for (int j = count - 1; j >= 0; j--) {
> + const char **pl = property[j];
> +
> + for (int k = 2; k >= 0; k--) {
> + unsigned int read =
> UINT_MAX;
> + unsigned int val =
> store[i][j][k];
> +
> + igt_sysfs_printf(e, pl[k], "%u",
> val);
> + igt_sysfs_scanf(e, pl[k], "%u",
> &read);
> + igt_abort_on_f(read != val,
> + "%s not
> restored!\n", pl[k]);
> + }
> + }
> + i++;
> + }
> +
> + igt_sysfs_free_engine_list(list);
> + close(engines_fd[gtn]);
> + close(gt_fd[gtn]);
> + }
> +
Whitespace
Otherwise, LGTM, Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> xe_device_put(xe);
> close(xe);
> }
> --
> 2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-12-05 12:15 ` Upadhyay, Tejas
@ 2024-12-05 15:17 ` Cavitt, Jonathan
2024-12-06 5:46 ` Upadhyay, Tejas
0 siblings, 1 reply; 14+ messages in thread
From: Cavitt, Jonathan @ 2024-12-05 15:17 UTC (permalink / raw)
To: Upadhyay, Tejas, igt-dev@lists.freedesktop.org, Brost, Matthew
Cc: Gupta, saurabhg, Zuo, Alex, kamil.konieczny@linux.intel.com,
Belgaumkar, Vinay
-----Original Message-----
From: Upadhyay, Tejas <tejas.upadhyay@intel.com>
Sent: Thursday, December 5, 2024 4:15 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>; igt-dev@lists.freedesktop.org; Brost, Matthew <matthew.brost@intel.com>
Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; kamil.konieczny@linux.intel.com; Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
Subject: RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
> > -----Original Message-----
> > From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> > Sent: Thursday, December 5, 2024 3:54 AM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg
> > <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>;
> > kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> > <vinay.belgaumkar@intel.com>; Upadhyay, Tejas
> > <tejas.upadhyay@intel.com>
> > Subject: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore
> > preempt timeout
> >
> > The subtests of sysfs_timeslice_duration modify the preempt_timeout_us and
> > timeslice_duration_us values. However, while the test does restore the
> > timeslice_duration_us value at the end of execution, it does not do the same
> > for preempt_timeout_us. Because the value is not properly restored, future
> > tests can end up using the unexpected preempt timeout value and thus have
> > unexpected behavior.
> >
> > Save and restore the preempt_timeout_us value during the test.
> >
> > This fix does not apply to xe_sysfs_preempt_timeout because only the
> > preempt_timeout_us is modified during those tests, and the value is correcty
> > restored before the tests end.
> >
> > v2: Also restore preempt_timeout_us on test failure (Kamil)
>
> Restoring timeouts after test looks ok here, you can add my r-o-b for that. But if there is value already set via sysfs manually which is not default values then we still have chance to hit the issues we are fixing here. I have tested this manually what I am talking here.
>
> I think restoring or setting up these timeout values to default before other igt tests like igt@xe_vm@bind-execqueues-independent is very important or else low values of these timeout set manually via sysfs (echo value > timeout) might fail the test.
>
> Although I am not very sure storing restoring timeout values should be based on default values or not. @Brost, Matthew any input here?
Do any other tests change these sysfs parameters? Because if not, the restored value and the default value
should be the same when running IGT.
As for the manual case, where user changes may occur before testing, it should be in our best interest to
restore any user settings we change during testing.
-Jonathan Cavitt
>
> Tejas
> >
> > v3: Abort on restore failure (Kamil)
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976
> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > ---
> > tests/intel/xe_sysfs_timeslice_duration.c | 19 +++++++++++++++++--
> > 1 file changed, 17 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c
> > b/tests/intel/xe_sysfs_timeslice_duration.c
> > index 899093a9df..752672691f 100644
> > --- a/tests/intel/xe_sysfs_timeslice_duration.c
> > +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> > @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine,
> > unsigned int timeout, uint16_ static void test_timeout(int fd, int engine, const
> > char **property, uint16_t class, int gt) {
> > uint64_t delays[] = { 1000, 50000, 100000, 500000 };
> > - unsigned int saved;
> > + unsigned int saved, old_pt;
> > uint64_t elapsed;
> > uint64_t epsilon;
> >
> > + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u",
> > +&old_pt) == 1);
> > igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1)
> > == 1);
> > igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
> > igt_debug("Initial %s:%u\n", property[0], saved); @@ -140,6 +141,9
> > @@ static void test_timeout(int fd, int engine, const char **property, uint16_t
> > cla
> > }
> >
> > set_timeslice_duration(engine, saved);
> > + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us",
> > "%u", old_pt));
> > + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> > + igt_assert_eq(saved, old_pt);
> > }
> >
> > #define MAX_GTS 8
> > @@ -159,6 +163,7 @@ igt_main
> > int gt_count = 0;
> > int fd = -1, sys_fd, gt;
> > int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> > + unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> > unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> > int *engine_list[MAX_GTS];
> >
> > @@ -184,6 +189,8 @@ igt_main
> > while (list[i] != -1) {
> > igt_require(igt_sysfs_scanf(list[i],
> > "timeslice_duration_us", "%u",
> > &tds[gt_count][i])
> > == 1);
> > + igt_require(igt_sysfs_scanf(list[i],
> > "preempt_timeout_us", "%u",
> > + &pts[gt_count][i])
> > == 1);
> > i++;
> > }
> >
> > @@ -215,8 +222,16 @@ igt_main
> > while (list[j] != -1) {
> > unsigned int store = UINT_MAX;
> >
> > + igt_sysfs_printf(list[j], "preempt_timeout_us",
> > + "%u", pts[i][j]);
> > + igt_sysfs_scanf(list[j], "preempt_timeout_us",
> > + "%u", &store);
> > + igt_abort_on_f(store != pts[i][j],
> > + "preempt_timeout_us not
> > restored!\n");
> > +
> > + store = UINT_MAX;
> > igt_sysfs_printf(list[j],
> > "timeslice_duration_us",
> > - "%u", tds[i][j]);
> > + "%u", tds[i][j]);
> > igt_sysfs_scanf(list[j],
> > "timeslice_duration_us",
> > "%u", &store);
> > igt_abort_on_f(store != tds[i][j],
> > --
> > 2.43.0
>
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-12-05 15:17 ` Cavitt, Jonathan
@ 2024-12-06 5:46 ` Upadhyay, Tejas
0 siblings, 0 replies; 14+ messages in thread
From: Upadhyay, Tejas @ 2024-12-06 5:46 UTC (permalink / raw)
To: Cavitt, Jonathan, igt-dev@lists.freedesktop.org, Brost, Matthew
Cc: Gupta, saurabhg, Zuo, Alex, kamil.konieczny@linux.intel.com,
Belgaumkar, Vinay
> -----Original Message-----
> From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Sent: Thursday, December 5, 2024 8:47 PM
> To: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt-
> dev@lists.freedesktop.org; Brost, Matthew <matthew.brost@intel.com>
> Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex
> <alex.zuo@intel.com>; kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>
> Subject: RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore
> preempt timeout
>
> -----Original Message-----
> From: Upadhyay, Tejas <tejas.upadhyay@intel.com>
> Sent: Thursday, December 5, 2024 4:15 AM
> To: Cavitt, Jonathan <jonathan.cavitt@intel.com>; igt-
> dev@lists.freedesktop.org; Brost, Matthew <matthew.brost@intel.com>
> Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex
> <alex.zuo@intel.com>; kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>
> Subject: RE: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore
> preempt timeout
> > > -----Original Message-----
> > > From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> > > Sent: Thursday, December 5, 2024 3:54 AM
> > > To: igt-dev@lists.freedesktop.org
> > > Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg
> > > <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>;
> > > kamil.konieczny@linux.intel.com; Belgaumkar, Vinay
> > > <vinay.belgaumkar@intel.com>; Upadhyay, Tejas
> > > <tejas.upadhyay@intel.com>
> > > Subject: [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration:
> > > Restore preempt timeout
> > >
> > > The subtests of sysfs_timeslice_duration modify the
> > > preempt_timeout_us and timeslice_duration_us values. However, while
> > > the test does restore the timeslice_duration_us value at the end of
> > > execution, it does not do the same for preempt_timeout_us. Because
> > > the value is not properly restored, future tests can end up using
> > > the unexpected preempt timeout value and thus have unexpected
> behavior.
> > >
> > > Save and restore the preempt_timeout_us value during the test.
> > >
> > > This fix does not apply to xe_sysfs_preempt_timeout because only the
> > > preempt_timeout_us is modified during those tests, and the value is
> > > correcty restored before the tests end.
> > >
> > > v2: Also restore preempt_timeout_us on test failure (Kamil)
> >
> > Restoring timeouts after test looks ok here, you can add my r-o-b for that.
> But if there is value already set via sysfs manually which is not default values
> then we still have chance to hit the issues we are fixing here. I have tested this
> manually what I am talking here.
> >
> > I think restoring or setting up these timeout values to default before other igt
> tests like igt@xe_vm@bind-execqueues-independent is very important or else
> low values of these timeout set manually via sysfs (echo value > timeout)
> might fail the test.
> >
> > Although I am not very sure storing restoring timeout values should be
> based on default values or not. @Brost, Matthew any input here?
>
> Do any other tests change these sysfs parameters? Because if not, the
> restored value and the default value should be the same when running IGT.
>
> As for the manual case, where user changes may occur before testing, it
> should be in our best interest to restore any user settings we change during
> testing.
I had thought on this again, two cases here :
1. User manually changes on their local systems, and subsequent time sensitive tests are failing, we should be ok, user should also expect same. We are good.
2. CI has manual change in these timeouts through sysfs (echo), test will fail. Changing manually on CI should not be allowed (through any IGT test is fine) or if manual change is done failures should not be reported. Then we are good here as well.
Overall it looks good here with above expectations,
Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Tejas
> -Jonathan Cavitt
>
> >
> > Tejas
> > >
> > > v3: Abort on restore failure (Kamil)
> > >
> > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976
> > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > > CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > > CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > > ---
> > > tests/intel/xe_sysfs_timeslice_duration.c | 19 +++++++++++++++++--
> > > 1 file changed, 17 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c
> > > b/tests/intel/xe_sysfs_timeslice_duration.c
> > > index 899093a9df..752672691f 100644
> > > --- a/tests/intel/xe_sysfs_timeslice_duration.c
> > > +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> > > @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int
> > > engine, unsigned int timeout, uint16_ static void test_timeout(int
> > > fd, int engine, const char **property, uint16_t class, int gt) {
> > > uint64_t delays[] = { 1000, 50000, 100000, 500000 };
> > > - unsigned int saved;
> > > + unsigned int saved, old_pt;
> > > uint64_t elapsed;
> > > uint64_t epsilon;
> > >
> > > + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u",
> > > +&old_pt) == 1);
> > > igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u",
> > > 1) == 1);
> > > igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
> > > igt_debug("Initial %s:%u\n", property[0], saved); @@ -140,6 +141,9
> > > @@ static void test_timeout(int fd, int engine, const char
> > > **property, uint16_t cla
> > > }
> > >
> > > set_timeslice_duration(engine, saved);
> > > + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us",
> > > "%u", old_pt));
> > > + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> > > + igt_assert_eq(saved, old_pt);
> > > }
> > >
> > > #define MAX_GTS 8
> > > @@ -159,6 +163,7 @@ igt_main
> > > int gt_count = 0;
> > > int fd = -1, sys_fd, gt;
> > > int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> > > + unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> > > unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> > > int *engine_list[MAX_GTS];
> > >
> > > @@ -184,6 +189,8 @@ igt_main
> > > while (list[i] != -1) {
> > > igt_require(igt_sysfs_scanf(list[i],
> > > "timeslice_duration_us", "%u",
> > > &tds[gt_count][i])
> > > == 1);
> > > + igt_require(igt_sysfs_scanf(list[i],
> > > "preempt_timeout_us", "%u",
> > > + &pts[gt_count][i])
> > > == 1);
> > > i++;
> > > }
> > >
> > > @@ -215,8 +222,16 @@ igt_main
> > > while (list[j] != -1) {
> > > unsigned int store = UINT_MAX;
> > >
> > > + igt_sysfs_printf(list[j], "preempt_timeout_us",
> > > + "%u", pts[i][j]);
> > > + igt_sysfs_scanf(list[j], "preempt_timeout_us",
> > > + "%u", &store);
> > > + igt_abort_on_f(store != pts[i][j],
> > > + "preempt_timeout_us not
> > > restored!\n");
> > > +
> > > + store = UINT_MAX;
> > > igt_sysfs_printf(list[j],
> > > "timeslice_duration_us",
> > > - "%u", tds[i][j]);
> > > + "%u", tds[i][j]);
> > > igt_sysfs_scanf(list[j],
> > > "timeslice_duration_us",
> > > "%u", &store);
> > > igt_abort_on_f(store != tds[i][j],
> > > --
> > > 2.43.0
> >
> >
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: ✗ Xe.CI.Full: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-12-05 3:34 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-06 17:13 ` Cavitt, Jonathan
0 siblings, 0 replies; 14+ messages in thread
From: Cavitt, Jonathan @ 2024-12-06 17:13 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: Cavitt, Jonathan
[-- Attachment #1: Type: text/plain, Size: 80842 bytes --]
All new possible regressions seem to be unrelated.
-Jonathan Cavitt
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, December 4, 2024 7:34 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for test/intel/xe_sysfs: Restore sysfs params correctly
Patch Details
Series:
test/intel/xe_sysfs: Restore sysfs params correctly
URL:
https://patchwork.freedesktop.org/series/142138/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/index.html
CI Bug Log - changes from XEIGT_8138_full -> XEIGTPW_12247_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12247_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12247_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12247_full:
IGT changes
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@kms_async_flips@test-cursor-atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html> +17 other tests abort
* igt@xe_exec_threads@threads-rebind-bindexecqueue:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_exec_threads@threads-rebind-bindexecqueue.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_threads@threads-rebind-bindexecqueue.html>
Warnings
* igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_plane_cursor@overlay@pipe-a-dp-2-size-256.html>
* igt@xe_module_load@load:
* shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html>) (Intel XE#3691<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3691>) -> (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-dg2-436/igt@xe_module_load@load.html>)
New tests
New tests have been introduced between XEIGT_8138_full and XEIGTPW_12247_full:
New IGT tests (13)
* igt@kms_psr@fbc-psr-cursor-plane-move@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.01] s
* igt@kms_psr@fbc-psr-no-drrs@edp-1:
* Statuses : 1 pass(s)
* Exec time: [1.81] s
* igt@kms_psr@fbc-psr-primary-blt@edp-1:
* Statuses : 1 pass(s)
* Exec time: [3.79] s
* igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.19] s
* igt@kms_psr@fbc-psr-sprite-render@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.11] s
* igt@kms_psr@fbc-psr-suspend@edp-1:
* Statuses : 1 abort(s)
* Exec time: [7.27] s
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.08] s
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.08] s
* igt@kms_psr@psr-primary-blt@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.71] s
* igt@kms_psr@psr-primary-page-flip@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.10] s
* igt@kms_psr@psr-sprite-blt@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.12] s
* igt@kms_psr@psr-suspend@edp-1:
* Statuses : 1 abort(s)
* Exec time: [3.49] s
* igt@kms_psr@psr2-sprite-plane-onoff@edp-1:
* Statuses : 1 pass(s)
* Exec time: [2.10] s
Known issues
Here are the changes found in XEIGTPW_12247_full that come from known issues:
IGT changes
Issues hit
* igt@intel_hwmon@hwmon-read:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@intel_hwmon@hwmon-read.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_async_flips@crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_async_flips@crc.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_async_flips@crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> (Intel XE#3557<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557>)
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> (Intel XE#1426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) +1 other test fail
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +3 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +4 other tests skip
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +10 other tests skip
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) +1 other test skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +12 other tests skip
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +3 other tests skip
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +2 other tests skip
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +23 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +26 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +24 other tests skip
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip
* igt@kms_chamelium_color@degamma:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_chamelium_color@degamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_chamelium_color@degamma.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +2 other tests skip
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +13 other tests skip
* igt@kms_chamelium_frames@dp-crc-fast:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_chamelium_frames@dp-crc-fast.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +5 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>)
* igt@kms_content_protection@legacy:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +3 other tests fail
* igt@kms_content_protection@mei-interface:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_content_protection@mei-interface.html> (Intel XE#1468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468>)
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +8 other tests skip
* igt@kms_cursor_crc@cursor-sliding-32x32:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x32.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +3 other tests skip
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +2 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +2 other tests skip
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +1 other test incomplete
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +8 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) +2 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3226<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226>)
* igt@kms_dsc@dsc-with-bpc-formats:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html> (Intel XE#3640<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +1 other test fail
* igt@kms_flip@2x-plain-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_flip@2x-plain-flip.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +8 other tests skip
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +2 other tests fail
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +76 other tests dmesg-warn
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 other test incomplete
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +4 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +19 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +19 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +52 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +45 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +39 other tests skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_hdr@brightness-with-hdr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) +1 other test skip
* igt@kms_joiner@basic-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>)
* igt@kms_pipe_crc_basic@suspend-read-crc:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3663<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663>)
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_plane@plane-panning-bottom-right-suspend:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
* igt@kms_plane_lowres@tiling-4:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-4.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_lowres@tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>)
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +9 other tests skip
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip
* igt@kms_pm_backlight@bad-brightness:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#2391<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
* igt@kms_pm_dc@deep-pkgc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2505<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505>)
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>)
* igt@kms_pm_rpm@universal-planes@plane-32:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_pm_rpm@universal-planes@plane-32.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_pm_rpm@universal-planes@plane-32.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +7 other tests dmesg-warn
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +3 other tests skip
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +13 other tests skip
* igt@kms_psr@fbc-pr-sprite-blt:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-blt.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +4 other tests skip
* igt@kms_psr@fbc-psr2-cursor-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
* igt@kms_rotation_crc@primary-rotation-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>)
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
* igt@kms_scaling_modes@scaling-mode-center:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>)
* igt@kms_setmode@invalid-clone-exclusive-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
* igt@kms_tv_load_detect@load-detect:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html> (Intel XE#2450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450>)
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>)
* igt@kms_vblank@wait-idle-hang@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +11 other tests dmesg-fail
* igt@kms_vrr@cmrr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
* igt@kms_vrr@flip-suspend:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_vrr@flip-suspend.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_vrr@negative-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@kms_vrr@negative-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_writeback@writeback-check-output-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
* igt@kms_writeback@writeback-invalid-parameters:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +2 other tests skip
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +2 other tests abort
* igt@xe_create@create-big-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_create@create-big-vram.html> (Intel XE#1062<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062>)
* igt@xe_create@multigpu-create-massive-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_create@multigpu-create-massive-size.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +10 other tests skip
* igt@xe_eudebug@exec-queue-placements:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_eudebug@exec-queue-placements.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip
* igt@xe_evict@evict-beng-threads-large-multi-vm:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_evict@evict-beng-threads-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +14 other tests skip
* igt@xe_evict@evict-large-multi-vm-cm:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#2364<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364>)
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-rebind.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests dmesg-warn
* igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +1 other test dmesg-warn
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +11 other tests skip
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +8 other tests skip
* igt@xe_exec_reset@gt-reset:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_exec_reset@gt-reset.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +28 other tests dmesg-warn
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +1 other test dmesg-warn
* igt@xe_live_ktest@xe_eudebug:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
* igt@xe_media_fill@media-fill:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596>)
* igt@xe_module_load@force-load:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@force-load.html> (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
* igt@xe_module_load@load:
* shard-bmg: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_module_load@load.html>) (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
* igt@xe_module_load@reload:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_module_load@reload.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_module_load@reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_pat@pat-index-xehpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>)
* igt@xe_pat@pat-index-xelpg:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html> (Intel XE#2236<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
* igt@xe_pm@d3cold-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-5/igt@xe_pm@d3cold-basic.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@d3cold-basic.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) +1 other test skip
* igt@xe_pm@s2idle-d3hot-basic-exec:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
* igt@xe_pm@s3-basic-exec:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-8/igt@xe_pm@s3-basic-exec.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +1 other test skip
* igt@xe_pm@s3-vm-bind-userptr:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@vram-d3cold-threshold:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* igt@xe_query@multigpu-query-invalid-cs-cycles:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +4 other tests skip
Possible fixes
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html> (Intel XE#1701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html> +1 other test pass
* igt@kms_big_fb@linear-8bpp-rotate-180:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html> +21 other tests pass
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html>
* igt@kms_color@deep-color:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@deep-color.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_color@deep-color.html> +1 other test pass
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html> +1 other test pass
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-suspend:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html> +3 other tests pass
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> +2 other tests pass
* igt@kms_flip@plain-flip-ts-check@a-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html> +2 other tests pass
* igt@kms_flip@wf_vblank-ts-check:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#2635<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html>
* igt@kms_flip@wf_vblank-ts-check@a-dp2:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@a-dp2.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@a-dp2.html>
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@b-dp2.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@b-dp2.html>
* igt@kms_plane_lowres@tiling-none:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-none.html> (Intel XE#3452<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html> +1 other test pass
* igt@kms_pm_rpm@legacy-planes@plane-59:
* shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-59.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-3/igt@kms_pm_rpm@legacy-planes@plane-59.html> +1 other test pass
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html>
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html>
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html>
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html> +117 other tests pass
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> +1 other test pass
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html>
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
* shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html>
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> +1 other test pass
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> +1 other test pass
* igt@xe_live_ktest@xe_migrate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html> +1 other test pass
* igt@xe_pm@d3hot-mocs:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@d3hot-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_pm@d3hot-mocs.html> +6 other tests pass
* igt@xe_pm@s3-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@xe_pm@s3-basic-exec.html>
* igt@xe_wedged@basic-wedged:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_wedged@basic-wedged.html> (Intel XE#2919<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_wedged@basic-wedged.html>
Warnings
* igt@kms_content_protection@uevent:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_content_protection@uevent.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) +1 other test fail
* igt@kms_fbcon_fbt@fbc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +9 other tests fail
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +7 other tests dmesg-fail
* igt@kms_pm_dc@dc6-dpms:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2509<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509>)
* igt@xe_evict@evict-beng-mixed-many-threads-large:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
* igt@xe_module_load@many-reload:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s2idle-exec-after:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>)
* igt@xe_pm@s2idle-vm-bind-userptr:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_wedged@wedged-at-any-timeout:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>)
* igt@xe_wedged@wedged-mode-toggle:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12247/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
Build changes
* IGT: IGT_8138 -> IGTPW_12247
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2321-a8f3624ace7e2f401299e21e277614e097a55481
IGTPW_12247: 3ebe7720a14eb5fbf5bf1a323ea93d990f2b85f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2321-a8f3624ace7e2f401299e21e277614e097a55481: a8f3624ace7e2f401299e21e277614e097a55481
[-- Attachment #2: Type: text/html, Size: 148785 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-12-04 23:25 ` ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
@ 2024-12-06 17:14 ` Cavitt, Jonathan
0 siblings, 0 replies; 14+ messages in thread
From: Cavitt, Jonathan @ 2024-12-06 17:14 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: Cavitt, Jonathan
Change only impacts xe code set. I915 should be unaffected.
-Jonathan Cavitt
-----Original Message-----
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, December 4, 2024 3:25 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/142138/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8138 -> IGTPW_12247
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12247 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12247, 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_12247/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12247:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/fi-kbl-7567u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/fi-kbl-7567u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
Known issues
------------
Here are the changes found in IGTPW_12247 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#9318])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#2190])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4083])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3282])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][12] -> [FAIL][13] ([i915#12903])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#11681] / [i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][15] -> [ABORT][16] ([i915#12061]) +1 other test abort
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [PASS][17] -> [ABORT][18] ([i915#12061]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][19] -> [ABORT][20] ([i915#12061]) +1 other test abort
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#4212]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_chamelium_edid@vga-edid-read:
- bat-dg2-13: NOTRUN -> [SKIP][24] ([Intel XE#484] / [i915#4550]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adls-6: NOTRUN -> [SKIP][26] ([i915#4103]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-jsl-1: NOTRUN -> [SKIP][27] ([i915#4103]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#3840])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_dsc@dsc-basic.html
- bat-adls-6: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#3840])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9886])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
- bat-adls-6: NOTRUN -> [SKIP][32]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][33]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][34] ([i915#5274])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][35] ([i915#5354])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
- bat-adls-6: NOTRUN -> [SKIP][36] ([i915#5354])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][37] ([i915#1072] / [i915#9732]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][38] ([i915#1072] / [i915#9732]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adls-6: NOTRUN -> [SKIP][40] ([i915#3555])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][41] ([i915#3555])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][42] ([i915#3708])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][43] ([i915#3291]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-14: NOTRUN -> [SKIP][44] ([i915#3708] / [i915#4077]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-14: NOTRUN -> [SKIP][45] ([i915#3291] / [i915#3708]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-dg2-14/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][46] ([i915#12903]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][48] ([i915#12061]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-mtlp-8/igt@i915_selftest@live.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][50] ([i915#12061]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-5/igt@i915_selftest@live@workarounds.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [ABORT][52] ([i915#12061]) -> [PASS][53] +1 other test pass
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-6/igt@i915_selftest@live@workarounds.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8138 -> IGTPW_12247
* Linux: CI_DRM_15786 -> CI_DRM_15789
CI-20190529: 20190529
CI_DRM_15786: c8df5caf278df4f9ca0aba627047c5ee4318fc0d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15789: a8f3624ace7e2f401299e21e277614e097a55481 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12247: 3ebe7720a14eb5fbf5bf1a323ea93d990f2b85f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8138: 8138
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12247/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-12-06 17:14 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-04 22:23 [PATCH v10 0/4] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 1/4] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 2/4] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
2024-12-04 22:23 ` [PATCH v10 3/4] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
2024-12-05 12:15 ` Upadhyay, Tejas
2024-12-05 15:17 ` Cavitt, Jonathan
2024-12-06 5:46 ` Upadhyay, Tejas
2024-12-04 22:23 ` [PATCH v10 4/4] tests/intel/xe_sysfs_scheduler: Assert sysfs params are restored Jonathan Cavitt
2024-12-05 12:17 ` Upadhyay, Tejas
2024-12-04 23:25 ` ✗ i915.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
2024-12-06 17:14 ` Cavitt, Jonathan
2024-12-04 23:30 ` ✓ Xe.CI.BAT: success " Patchwork
2024-12-05 3:34 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-06 17:13 ` Cavitt, Jonathan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox