* [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded
@ 2025-06-13 16:20 Kamil Konieczny
2025-06-13 18:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Kamil Konieczny @ 2025-06-13 16:20 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Ewelina Musial, Karol Krol, Petri Latvala,
Peter Senna Tschudin, Ryszard Knop, Vitaly Prosyak,
Zbigniew Kempczyński
Current disk limit triggers once when it is exceeded during test
monitoring. After that happens executor no longer checks if
kernel is still printing plenty of messages.
Create a way to abort test in such scenarios with the help of
measureing kernel kmsg activity before first test is executed
and then also check it twice, first time after exceeding disk
limit and second time after each test ends.
Cc: Ewelina Musial <ewelina.musial@intel.com>
Cc: Karol Krol <karol.krol@intel.com>
Cc: Petri Latvala <adrinael@adrinael.net>
Cc: Peter Senna Tschudin <peter.senna@linux.intel.com>
Cc: Ryszard Knop <ryszard.knop@intel.com>
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
runner/executor.c | 194 +++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 192 insertions(+), 2 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index 13180a0a4..14d131c17 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -637,6 +637,11 @@ const char *get_out_filename(int fid)
return "output-filename-index-error";
}
+static int open_kmsg_rdonly(void)
+{
+ return open("/dev/kmsg", O_RDONLY | O_CLOEXEC | O_NONBLOCK);
+}
+
/* Returns the number of bytes written to disk, or a negative number on error */
static long dump_dmesg(int kmsgfd, int outfd, ssize_t size)
{
@@ -734,6 +739,89 @@ static long dump_dmesg(int kmsgfd, int outfd, ssize_t size)
}
}
+/*
+ * Measure how many bytes appears in dmesg.
+ * This is the same as above dump_dmesg() but with reading only.
+ */
+static unsigned long long read_dmesg_to_null(int kmsgfd, unsigned long long size)
+{
+ bool underflow_once = false;
+ int comparefd;
+ char buf[2048];
+ unsigned int flags;
+ unsigned long long readed = 0;
+ unsigned long long seq, cmpseq, usec;
+ char cont;
+ ssize_t r;
+
+ if (kmsgfd < 0)
+ return 0;
+
+ comparefd = open_kmsg_rdonly();
+ if (comparefd < 0) {
+ errf("Error opening another fd for /dev/kmsg\n");
+ return -1;
+ }
+ lseek(comparefd, 0, SEEK_END);
+
+ while (1) {
+ if (comparefd >= 0) {
+ r = read(comparefd, buf, sizeof(buf) - 1);
+ if (r < 0) {
+ if (errno != EAGAIN && errno != EPIPE) {
+ errf("Warning: Error reading kmsg comparison record: %m\n");
+ close(comparefd);
+ return readed;
+ }
+ } else {
+ buf[r] = '\0';
+ if (sscanf(buf, "%u,%llu,%llu,%c;",
+ &flags, &cmpseq, &usec, &cont) == 4) {
+ close(comparefd);
+ comparefd = -1;
+ }
+ }
+ }
+
+ r = read(kmsgfd, buf, sizeof(buf));
+ if (r < 0) {
+ if (errno == EPIPE) {
+ if (!underflow_once) {
+ errf("Warning: kernel log ringbuffer underflow, some records lost.\n");
+ underflow_once = true;
+ }
+ continue;
+ } else if (errno == EINVAL) {
+ errf("Warning: Buffer too small for kernel log record, record lost.\n");
+ continue;
+ } else if (errno != EAGAIN) {
+ errf("Error reading from kmsg: %m\n");
+ return 0;
+ }
+
+ /* EAGAIN, so we're done reading */
+ close(comparefd);
+
+ return readed;
+ }
+
+ readed += r;
+
+ if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;",
+ &flags, &seq, &usec, &cont) == 4) {
+ if (seq >= cmpseq)
+ return readed;
+ }
+
+ if (size && readed >= size) {
+ if (comparefd >= 0)
+ close(comparefd);
+
+ return readed;
+ }
+ } /* while(1) */
+}
+
static bool kill_child(int sig, pid_t child)
{
/*
@@ -943,6 +1031,77 @@ static size_t calc_last_dmesg_chunk(size_t limit, size_t disk_usage)
return dt != 0 ? dt : -1;
}
+/*
+ * Returns:
+ * =>0.0 - Success, measured kmsg activity in bytes/second
+ * -1.0 - Failure
+ */
+static double measure_dmesg_bytes_per_sec(void)
+{
+ struct timespec time_beg, time_now, nsec_sleep;
+ unsigned long long readed = 0;
+ double time;
+ int kmsgfd, cnt;
+
+ if ((kmsgfd = open_kmsg_rdonly()) < 0) {
+ errf("Warning: Cannot open /dev/kmsg\n");
+
+ return -1.0;
+ }
+
+ lseek(kmsgfd, 0, SEEK_END);
+ nsec_sleep.tv_sec = 0;
+ nsec_sleep.tv_nsec = 1000ULL * 1000ULL; /* 10^6 nanoseconds = 10^-3 sec */
+ runner_gettime(&time_beg);
+ for (cnt = 0, time = 0.0; cnt < 4 && time < 0.01; ++cnt) {
+ if (cnt && !nanosleep(&nsec_sleep, NULL))
+ break;
+
+ readed += read_dmesg_to_null(kmsgfd, 128 * 1024); /* 64KB max */
+ runner_gettime(&time_now);
+ time = igt_time_elapsed(&time_beg, &time_now);
+ if (time < 0.0) {
+ errf("Warning: Time underflow\n");
+
+ return -1.0;
+ }
+ }
+
+ runner_gettime(&time_now);
+ time = igt_time_elapsed(&time_beg, &time_now);
+ if (time <= 0.0) {
+ errf("Warning: Time underflow\n");
+
+ return -1.0;
+ }
+
+ return (double)readed / time;
+}
+
+/* Returns: true if ratio lower than maxratio */
+static bool check_dmesg_ratio(double maxratio, int log_level, bool sync)
+{
+ double new_dmesg_bps = measure_dmesg_bytes_per_sec();
+
+ if (new_dmesg_bps > maxratio) {
+ char msg[1024];
+
+ snprintf(msg, sizeof(msg), "Dmesg rate overflow %0.3fKB/s > %0.3fKB/s, stopping.\n",
+ new_dmesg_bps / 1024, maxratio / 1024);
+ if (log_level >= LOG_LEVEL_NORMAL) {
+ outf("%s", msg);
+ if (sync)
+ fflush(stdout);
+ }
+
+ errf("%s", msg);
+
+ return false;
+ }
+
+ return true;
+}
+
/*
* Returns:
* =0 - Success
@@ -955,6 +1114,7 @@ static int monitor_output(pid_t child,
int *outputs,
double *time_spent,
struct settings *settings,
+ double max_dmesg_ratio,
char **abortreason,
bool *abort_already_written)
{
@@ -1596,6 +1756,11 @@ static int monitor_output(pid_t child,
}
}
+ if (!aborting && !check_dmesg_ratio(max_dmesg_ratio, settings->log_level, settings->sync)) {
+ asprintf(abortreason, "Dmesg ratio exceeded.");
+ aborting = true;
+ }
+
free(buf);
free(outbuf);
close(outfd);
@@ -1760,6 +1925,7 @@ static int execute_next_entry(struct execute_state *state,
size_t total,
double *time_spent,
struct settings *settings,
+ double max_dmesg_ratio,
struct job_list_entry *entry,
int testdirfd, int resdirfd,
int sigfd, sigset_t *sigmask,
@@ -1808,7 +1974,7 @@ static int execute_next_entry(struct execute_state *state,
goto out_pipe;
}
- if ((kmsgfd = open("/dev/kmsg", O_RDONLY | O_CLOEXEC | O_NONBLOCK)) < 0) {
+ if ((kmsgfd = open_kmsg_rdonly()) < 0) {
errf("Warning: Cannot open /dev/kmsg\n");
} else {
/* TODO: Checking of abort conditions in pre-execute dmesg */
@@ -1879,7 +2045,7 @@ static int execute_next_entry(struct execute_state *state,
result = monitor_output(child, outfd, errfd, socketfd,
kmsgfd, sigfd,
- outputs, time_spent, settings,
+ outputs, time_spent, settings, max_dmesg_ratio,
abortreason, abort_already_written);
out_kmsgfd:
@@ -2412,6 +2578,8 @@ bool execute(struct execute_state *state,
struct settings *settings,
struct job_list *job_list)
{
+ static double dmesg_bps = -1.0;
+ static double max_dmesg_bps = -1.0;
int resdirfd, testdirfd, unamefd, timefd, sigfd;
struct environment_variable *env_var;
struct utsname unamebuf;
@@ -2554,6 +2722,24 @@ bool execute(struct execute_state *state,
}
}
+ if (max_dmesg_bps < 0.0) {
+ double ncpu_bps = 1024 * max_t(size_t, sysconf(_SC_NPROCESSORS_ONLN), 4);
+ double set_bps = 0.0;
+
+ dmesg_bps = measure_dmesg_bytes_per_sec();
+
+ if (settings->disk_usage_limit > 0 && settings->per_test_timeout > 0)
+ set_bps = (double)settings->disk_usage_limit / (double)settings->per_test_timeout;
+ else if (settings->disk_usage_limit > 0)
+ set_bps = (double)settings->disk_usage_limit;
+
+ outf("Dmesg KB/s ratio settings:%0.3f ncpu:%0.3f current:%0.3f\n",
+ set_bps / 1024, ncpu_bps / 1024, dmesg_bps / 1024);
+
+ max_dmesg_bps = dmesg_bps <= 0.0 ? 1024.0 : dmesg_bps + 1024.0;
+ outf("Using max level dmesg ratio %0.3fKB/s\n", max_dmesg_bps / 1024);
+ }
+
for (; state->next < job_list->size;
state->next++) {
char *reason = NULL;
@@ -2590,6 +2776,7 @@ bool execute(struct execute_state *state,
job_list->size,
&time_spent,
settings,
+ max_dmesg_bps,
&job_list->entries[state->next],
testdirfd, resdirfd,
sigfd, &sigmask,
@@ -2645,6 +2832,9 @@ bool execute(struct execute_state *state,
break;
}
+ if (!check_dmesg_ratio(max_dmesg_bps, settings->log_level, settings->sync))
+ break;
+
if (result > 0) {
double time_left = state->time_left;
--
2.49.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ Xe.CI.BAT: failure for runner/executor: Abort if dmesg is flooded
2025-06-13 16:20 [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded Kamil Konieczny
@ 2025-06-13 18:01 ` Patchwork
2025-06-17 10:49 ` Kamil Konieczny
2025-06-13 18:22 ` ✗ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-06-13 18:01 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9336 bytes --]
== Series Details ==
Series: runner/executor: Abort if dmesg is flooded
URL : https://patchwork.freedesktop.org/series/150246/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8411_BAT -> XEIGTPW_13295_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13295_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13295_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13295_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-lnl-1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
Known issues
------------
Here are the changes found in XEIGTPW_13295_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-small-cm:
- bat-lnl-2: NOTRUN -> [SKIP][3] ([Intel XE#688]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_evict@evict-small-cm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-2: NOTRUN -> [SKIP][5] ([Intel XE#2229]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-1: NOTRUN -> [SKIP][6] ([Intel XE#2229])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#2229]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xe2:
- bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#977]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
- bat-dg2-oem2: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-1: NOTRUN -> [SKIP][12] ([Intel XE#1420])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-2: NOTRUN -> [SKIP][13] ([Intel XE#1420] / [Intel XE#2838])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xehpc@render:
- bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#4578])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-1: NOTRUN -> [SKIP][15] ([Intel XE#2245])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: NOTRUN -> [SKIP][16] ([Intel XE#977])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-pvc-2: NOTRUN -> [SKIP][17] ([Intel XE#979])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
- bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#979])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-1: NOTRUN -> [SKIP][19] ([Intel XE#2236])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-2: NOTRUN -> [SKIP][20] ([Intel XE#2236] / [Intel XE#979])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-1: NOTRUN -> [SKIP][21] ([Intel XE#3342])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-lnl-2: NOTRUN -> [SKIP][22] ([Intel XE#3342])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#3342])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-dg2-oem2: NOTRUN -> [SKIP][24] ([Intel XE#3342])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-bmg-2: NOTRUN -> [SKIP][25] ([Intel XE#3342])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_prime_self_import@basic-with_one_bo:
- bat-bmg-2: [ABORT][26] ([Intel XE#5247]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-bmg-2/igt@xe_prime_self_import@basic-with_one_bo.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-2/igt@xe_prime_self_import@basic-with_one_bo.html
- bat-bmg-1: [ABORT][28] ([Intel XE#5247]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-bmg-1/igt@xe_prime_self_import@basic-with_one_bo.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-bmg-1/igt@xe_prime_self_import@basic-with_one_bo.html
- bat-lnl-2: [ABORT][30] ([Intel XE#5247]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-lnl-2/igt@xe_prime_self_import@basic-with_one_bo.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-2/igt@xe_prime_self_import@basic-with_one_bo.html
- bat-pvc-2: [ABORT][32] ([Intel XE#5247]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html
- bat-dg2-oem2: [ABORT][34] ([Intel XE#5247]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_one_bo.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_one_bo.html
[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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#4578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4578
[Intel XE#5247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5247
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8411 -> IGTPW_13295
* Linux: xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7 -> xe-3252-4d016d6e602638e0ebc3895331224e057508c07a
IGTPW_13295: bdc2a2150836a4f130aa2265577e8544f7b10f2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7: e9c2e2a765de7f0c86d97589871410594ef8e0a7
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/index.html
[-- Attachment #2: Type: text/html, Size: 11597 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for runner/executor: Abort if dmesg is flooded
2025-06-13 16:20 [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded Kamil Konieczny
2025-06-13 18:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2025-06-13 18:22 ` Patchwork
2025-06-17 10:56 ` Kamil Konieczny
2025-06-15 13:25 ` ✗ Xe.CI.Full: " Patchwork
2025-06-15 18:07 ` [PATCH i-g-t v1] " Peter Senna Tschudin
3 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-06-13 18:22 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 33571 bytes --]
== Series Details ==
Series: runner/executor: Abort if dmesg is flooded
URL : https://patchwork.freedesktop.org/series/150246/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8411 -> IGTPW_13295
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13295 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13295, 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_13295/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_13295:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-blb-e6850: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-blb-e6850/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_module_load@reload:
- fi-cfl-guc: NOTRUN -> [ABORT][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-guc/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-jsl-1: NOTRUN -> [DMESG-WARN][3] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-jsl-1/igt@i915_selftest@live.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_hdmi_inject@inject-audio:
- bat-kbl-2: [PASS][6] -> [ABORT][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-kbl-2/igt@kms_hdmi_inject@inject-audio.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-kbl-2/igt@kms_hdmi_inject@inject-audio.html
* igt@vgem_basic@dmabuf-fence:
- fi-skl-6600u: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-skl-6600u/igt@vgem_basic@dmabuf-fence.html
#### Warnings ####
* igt@prime_self_import@basic-with_one_bo:
- bat-twl-2: [ABORT][9] ([i915#14463]) -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-twl-2/igt@prime_self_import@basic-with_one_bo.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-2/igt@prime_self_import@basic-with_one_bo.html
Known issues
------------
Here are the changes found in IGTPW_13295 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- fi-pnv-d510: NOTRUN -> [INCOMPLETE][11] ([i915#12904]) +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-pnv-d510/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@basic:
- fi-cfl-8700k: NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html
- fi-ivb-3770: NOTRUN -> [SKIP][13] +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-ivb-3770/igt@gem_lmem_swapping@basic.html
- fi-elk-e7500: NOTRUN -> [SKIP][14] +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-elk-e7500/igt@gem_lmem_swapping@basic.html
- fi-kbl-guc: NOTRUN -> [SKIP][15] ([i915#4613]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-guc/igt@gem_lmem_swapping@basic.html
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@gem_lmem_swapping@basic.html
- fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#4613]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-rkl-11600/igt@gem_lmem_swapping@basic.html
- fi-blb-e6850: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-blb-e6850/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-bsw-nick: NOTRUN -> [SKIP][19] +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-arls-6: NOTRUN -> [SKIP][20] ([i915#10213] / [i915#11671]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-hsw-4770: NOTRUN -> [SKIP][21] +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-hsw-4770/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#4613]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-adls-6: NOTRUN -> [SKIP][23] ([i915#4613]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][24] ([i915#4613]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-arlh-3: NOTRUN -> [SKIP][25] ([i915#11671]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-3/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-pnv-d510: NOTRUN -> [SKIP][26] +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-pnv-d510/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-adlp-9: NOTRUN -> [SKIP][27] ([i915#4613]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-rpls-4: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-kbl-7567u: NOTRUN -> [SKIP][29] ([i915#4613]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-twl-1: NOTRUN -> [SKIP][30] ([i915#10213] / [i915#11671]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-1/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-rplp-1: NOTRUN -> [SKIP][31] ([i915#4613]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rplp-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- bat-adlp-6: NOTRUN -> [SKIP][32] ([i915#4613]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- fi-kbl-x1275: NOTRUN -> [SKIP][33] ([i915#4613]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-x1275/igt@gem_lmem_swapping@verify-random.html
- bat-adlp-11: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-11/igt@gem_lmem_swapping@verify-random.html
- fi-ilk-650: NOTRUN -> [SKIP][35] +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-ilk-650/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][36] ([i915#4083])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][37] ([i915#4079]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][38] ([i915#4077]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@gem_tiled_fence_blits@basic.html
* igt@i915_selftest@live:
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][39] ([i915#12061] / [i915#13929])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][40] ([i915#13929])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-11: NOTRUN -> [DMESG-FAIL][41] ([i915#12061]) +1 other test dmesg-fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-11/igt@i915_selftest@live@workarounds.html
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][42] ([i915#12061])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-mtlp-9: NOTRUN -> [SKIP][43] ([i915#7707]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][44] ([i915#5190])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][45] ([i915#4212]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][46] ([i915#4213]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-9: NOTRUN -> [SKIP][47] ([i915#3555] / [i915#3840] / [i915#9159])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@kms_dsc@dsc-basic.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][48] ([i915#6078])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-11: NOTRUN -> [SKIP][49] ([i915#3708])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-14: NOTRUN -> [SKIP][50] ([i915#3708])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][51] ([i915#3708])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
- fi-kbl-guc: NOTRUN -> [SKIP][52]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-guc/igt@prime_vgem@basic-fence-flip.html
- fi-bsw-n3050: NOTRUN -> [SKIP][53] +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-bsw-n3050/igt@prime_vgem@basic-fence-flip.html
- bat-arlh-2: NOTRUN -> [SKIP][54] ([i915#11346])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-9: NOTRUN -> [SKIP][55] ([i915#3708])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- fi-kbl-x1275: NOTRUN -> [SKIP][56]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-x1275/igt@prime_vgem@basic-fence-flip.html
- bat-adlp-11: NOTRUN -> [SKIP][57] ([i915#10470] / [i915#3708])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-arlh-3: NOTRUN -> [SKIP][58] ([i915#12637]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-3/igt@prime_vgem@basic-fence-mmap.html
- bat-dg1-7: NOTRUN -> [SKIP][59] ([i915#3708] / [i915#4077]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][60] ([i915#3708] / [i915#4077]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][61] ([i915#3708]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
- bat-adlp-9: NOTRUN -> [SKIP][62] ([i915#3291] / [i915#3708]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-9/igt@prime_vgem@basic-fence-read.html
- bat-adls-6: NOTRUN -> [SKIP][63] ([i915#3291]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adls-6/igt@prime_vgem@basic-fence-read.html
- bat-arlh-2: NOTRUN -> [SKIP][64] ([i915#10212] / [i915#11346] / [i915#11726])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
- bat-arlh-3: NOTRUN -> [SKIP][65] ([i915#11726]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-3/igt@prime_vgem@basic-fence-read.html
- bat-dg1-7: NOTRUN -> [SKIP][66] ([i915#3708]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg1-7/igt@prime_vgem@basic-fence-read.html
- bat-twl-1: NOTRUN -> [SKIP][67] ([i915#10212] / [i915#3708])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-1/igt@prime_vgem@basic-fence-read.html
- bat-arls-6: NOTRUN -> [SKIP][68] ([i915#10212] / [i915#3708])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][69] ([i915#3708] / [i915#4077]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-11/igt@prime_vgem@basic-gtt.html
- bat-dg2-14: NOTRUN -> [SKIP][70] ([i915#3708] / [i915#4077]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-14/igt@prime_vgem@basic-gtt.html
- bat-atsm-1: NOTRUN -> [SKIP][71] ([i915#4077]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@prime_vgem@basic-gtt.html
- bat-arls-6: NOTRUN -> [SKIP][72] ([i915#12637] / [i915#3708] / [i915#4077]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@prime_vgem@basic-gtt.html
- bat-mtlp-8: NOTRUN -> [SKIP][73] ([i915#3708] / [i915#4077]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
- bat-dg2-8: NOTRUN -> [SKIP][74] ([i915#3708] / [i915#4077]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-8/igt@prime_vgem@basic-gtt.html
- bat-arlh-2: NOTRUN -> [SKIP][75] ([i915#11346] / [i915#12637]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- bat-rpls-4: NOTRUN -> [SKIP][76] ([i915#3708]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rpls-4/igt@prime_vgem@basic-read.html
- bat-twl-1: NOTRUN -> [SKIP][77] ([i915#10214] / [i915#3708])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-1/igt@prime_vgem@basic-read.html
- bat-rplp-1: NOTRUN -> [SKIP][78] ([i915#3708]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rplp-1/igt@prime_vgem@basic-read.html
- bat-arlh-2: NOTRUN -> [SKIP][79] ([i915#10214] / [i915#11346] / [i915#11726])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_vgem@basic-read.html
- fi-rkl-11600: NOTRUN -> [SKIP][80] ([i915#3291] / [i915#3708]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-rkl-11600/igt@prime_vgem@basic-read.html
- bat-arls-6: NOTRUN -> [SKIP][81] ([i915#10214] / [i915#3708])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][82] ([i915#3291] / [i915#3708]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-adlp-11: NOTRUN -> [SKIP][83] ([i915#3291] / [i915#3708]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-11/igt@prime_vgem@basic-write.html
- bat-adlp-6: NOTRUN -> [SKIP][84] ([i915#3291] / [i915#3708]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-6/igt@prime_vgem@basic-write.html
- bat-dg2-11: NOTRUN -> [SKIP][85] ([i915#3291] / [i915#3708]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-11/igt@prime_vgem@basic-write.html
- bat-dg2-14: NOTRUN -> [SKIP][86] ([i915#3291] / [i915#3708]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-14/igt@prime_vgem@basic-write.html
- bat-atsm-1: NOTRUN -> [SKIP][87] +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@prime_vgem@basic-write.html
- bat-arls-6: NOTRUN -> [SKIP][88] ([i915#10216] / [i915#3708])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@prime_vgem@basic-write.html
- bat-mtlp-8: NOTRUN -> [SKIP][89] ([i915#10216] / [i915#3708])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-8/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][90] ([i915#3291] / [i915#3708]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-8/igt@prime_vgem@basic-write.html
- bat-arlh-3: NOTRUN -> [SKIP][91] ([i915#11723])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-3/igt@prime_vgem@basic-write.html
- bat-twl-1: NOTRUN -> [SKIP][92] ([i915#10216] / [i915#3708])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-1/igt@prime_vgem@basic-write.html
- bat-arlh-2: NOTRUN -> [SKIP][93] ([i915#10216] / [i915#11346] / [i915#11723])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [ABORT][94] ([i915#13494]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-mtlp-9/igt@i915_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-9/igt@i915_module_load@load.html
* igt@prime_self_import@basic-with_one_bo:
- bat-dg2-11: [ABORT][96] ([i915#14463]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-dg2-11/igt@prime_self_import@basic-with_one_bo.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-11/igt@prime_self_import@basic-with_one_bo.html
- fi-cfl-8700k: [ABORT][98] ([i915#14463]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-cfl-8700k/igt@prime_self_import@basic-with_one_bo.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-8700k/igt@prime_self_import@basic-with_one_bo.html
- bat-dg2-14: [ABORT][100] ([i915#14463]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-dg2-14/igt@prime_self_import@basic-with_one_bo.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-14/igt@prime_self_import@basic-with_one_bo.html
- fi-elk-e7500: [ABORT][102] ([i915#14463]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-elk-e7500/igt@prime_self_import@basic-with_one_bo.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-elk-e7500/igt@prime_self_import@basic-with_one_bo.html
- fi-bsw-nick: [ABORT][104] ([i915#14463]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-bsw-nick/igt@prime_self_import@basic-with_one_bo.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-bsw-nick/igt@prime_self_import@basic-with_one_bo.html
- bat-atsm-1: [ABORT][106] ([i915#14463]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-atsm-1/igt@prime_self_import@basic-with_one_bo.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-atsm-1/igt@prime_self_import@basic-with_one_bo.html
- bat-arls-6: [ABORT][108] ([i915#14463]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-arls-6/igt@prime_self_import@basic-with_one_bo.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arls-6/igt@prime_self_import@basic-with_one_bo.html
- fi-hsw-4770: [ABORT][110] ([i915#14463]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-hsw-4770/igt@prime_self_import@basic-with_one_bo.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-hsw-4770/igt@prime_self_import@basic-with_one_bo.html
- fi-ivb-3770: [ABORT][112] ([i915#14463]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-ivb-3770/igt@prime_self_import@basic-with_one_bo.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-ivb-3770/igt@prime_self_import@basic-with_one_bo.html
- bat-mtlp-8: [ABORT][114] ([i915#14463]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-mtlp-8/igt@prime_self_import@basic-with_one_bo.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-mtlp-8/igt@prime_self_import@basic-with_one_bo.html
- bat-dg2-8: [ABORT][116] ([i915#14463]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-dg2-8/igt@prime_self_import@basic-with_one_bo.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-8/igt@prime_self_import@basic-with_one_bo.html
- fi-kbl-guc: [ABORT][118] ([i915#14463]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-kbl-guc/igt@prime_self_import@basic-with_one_bo.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-guc/igt@prime_self_import@basic-with_one_bo.html
- bat-adls-6: [ABORT][120] ([i915#14463]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-adls-6/igt@prime_self_import@basic-with_one_bo.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adls-6/igt@prime_self_import@basic-with_one_bo.html
- bat-jsl-1: [ABORT][122] -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-jsl-1/igt@prime_self_import@basic-with_one_bo.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-jsl-1/igt@prime_self_import@basic-with_one_bo.html
- fi-bsw-n3050: [ABORT][124] ([i915#14463]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-bsw-n3050/igt@prime_self_import@basic-with_one_bo.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-bsw-n3050/igt@prime_self_import@basic-with_one_bo.html
- bat-arlh-3: [ABORT][126] ([i915#14463]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-arlh-3/igt@prime_self_import@basic-with_one_bo.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-3/igt@prime_self_import@basic-with_one_bo.html
- fi-pnv-d510: [ABORT][128] ([i915#14463]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-pnv-d510/igt@prime_self_import@basic-with_one_bo.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-pnv-d510/igt@prime_self_import@basic-with_one_bo.html
- bat-dg1-7: [ABORT][130] ([i915#14463]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-dg1-7/igt@prime_self_import@basic-with_one_bo.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg1-7/igt@prime_self_import@basic-with_one_bo.html
- bat-adlp-9: [ABORT][132] ([i915#14463]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-adlp-9/igt@prime_self_import@basic-with_one_bo.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-9/igt@prime_self_import@basic-with_one_bo.html
- bat-rpls-4: [ABORT][134] ([i915#14463]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-rpls-4/igt@prime_self_import@basic-with_one_bo.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rpls-4/igt@prime_self_import@basic-with_one_bo.html
- fi-kbl-7567u: [ABORT][136] ([i915#14463]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-kbl-7567u/igt@prime_self_import@basic-with_one_bo.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-7567u/igt@prime_self_import@basic-with_one_bo.html
- bat-twl-1: [ABORT][138] ([i915#14463]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-twl-1/igt@prime_self_import@basic-with_one_bo.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-1/igt@prime_self_import@basic-with_one_bo.html
- bat-rplp-1: [ABORT][140] ([i915#14463]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-rplp-1/igt@prime_self_import@basic-with_one_bo.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-rplp-1/igt@prime_self_import@basic-with_one_bo.html
- bat-arlh-2: [ABORT][142] ([i915#14463]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-arlh-2/igt@prime_self_import@basic-with_one_bo.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-arlh-2/igt@prime_self_import@basic-with_one_bo.html
- fi-rkl-11600: [ABORT][144] ([i915#14463]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-rkl-11600/igt@prime_self_import@basic-with_one_bo.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-rkl-11600/igt@prime_self_import@basic-with_one_bo.html
- fi-tgl-1115g4: [ABORT][146] ([i915#14463]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-tgl-1115g4/igt@prime_self_import@basic-with_one_bo.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-tgl-1115g4/igt@prime_self_import@basic-with_one_bo.html
- fi-cfl-guc: [ABORT][148] ([i915#14463]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-cfl-guc/igt@prime_self_import@basic-with_one_bo.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-guc/igt@prime_self_import@basic-with_one_bo.html
- bat-dg2-9: [ABORT][150] ([i915#14463]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-dg2-9/igt@prime_self_import@basic-with_one_bo.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-dg2-9/igt@prime_self_import@basic-with_one_bo.html
- fi-kbl-x1275: [ABORT][152] ([i915#14463]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-kbl-x1275/igt@prime_self_import@basic-with_one_bo.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-x1275/igt@prime_self_import@basic-with_one_bo.html
- bat-adlp-11: [ABORT][154] ([i915#14463]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-adlp-11/igt@prime_self_import@basic-with_one_bo.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-11/igt@prime_self_import@basic-with_one_bo.html
- fi-cfl-8109u: [ABORT][156] ([i915#14463]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-cfl-8109u/igt@prime_self_import@basic-with_one_bo.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-8109u/igt@prime_self_import@basic-with_one_bo.html
- fi-ilk-650: [ABORT][158] ([i915#14463]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-ilk-650/igt@prime_self_import@basic-with_one_bo.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-ilk-650/igt@prime_self_import@basic-with_one_bo.html
- fi-blb-e6850: [ABORT][160] ([i915#14463]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-blb-e6850/igt@prime_self_import@basic-with_one_bo.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-blb-e6850/igt@prime_self_import@basic-with_one_bo.html
- bat-adlp-6: [ABORT][162] ([i915#14463]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-adlp-6/igt@prime_self_import@basic-with_one_bo.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-adlp-6/igt@prime_self_import@basic-with_one_bo.html
- fi-skl-6600u: [ABORT][164] ([i915#14463]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-skl-6600u/igt@prime_self_import@basic-with_one_bo.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-skl-6600u/igt@prime_self_import@basic-with_one_bo.html
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14463]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14463
[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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8411 -> IGTPW_13295
* Linux: CI_DRM_16700 -> CI_DRM_16703
CI-20190529: 20190529
CI_DRM_16700: cce8a9af1c6cf1776511aa69e5f4b5bef7bf5938 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16703: 4d016d6e602638e0ebc3895331224e057508c07a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13295: bdc2a2150836a4f130aa2265577e8544f7b10f2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/index.html
[-- Attachment #2: Type: text/html, Size: 43892 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for runner/executor: Abort if dmesg is flooded
2025-06-13 16:20 [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded Kamil Konieczny
2025-06-13 18:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-06-13 18:22 ` ✗ i915.CI.BAT: " Patchwork
@ 2025-06-15 13:25 ` Patchwork
2025-06-17 10:58 ` Kamil Konieczny
2025-06-15 18:07 ` [PATCH i-g-t v1] " Peter Senna Tschudin
3 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-06-15 13:25 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 65104 bytes --]
== Series Details ==
Series: runner/executor: Abort if dmesg is flooded
URL : https://patchwork.freedesktop.org/series/150246/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8411_FULL -> XEIGTPW_13295_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13295_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13295_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 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13295_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1.html
* igt@xe_drm_fdinfo@parallel-utilization-single-idle:
- shard-dg2-set2: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap:
- shard-lnl: NOTRUN -> [ABORT][4] +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap.html
* igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset:
- shard-lnl: [PASS][5] -> [ABORT][6] +16 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][7] ([Intel XE#1124]) -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][9] ([Intel XE#455] / [Intel XE#787]) -> [ABORT][10] +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: [SKIP][11] ([Intel XE#2893]) -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset:
- shard-dg2-set2: [SKIP][13] ([Intel XE#4915]) -> [ABORT][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: [SKIP][15] ([Intel XE#4733]) -> [ABORT][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
Known issues
------------
Here are the changes found in XEIGTPW_13295_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3279])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1512])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +27 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +1 other test incomplete
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2724])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4417]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2325])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2321])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#308])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3226])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#1475])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#4422])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4156])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#776])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301] / [Intel XE#3321])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#301]) +6 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2316])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1421]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@absolute-wf_vblank@a-dp2:
- shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_flip@absolute-wf_vblank@a-dp2.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_flip@absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][79] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2380]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +11 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +20 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4141]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +16 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +9 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2352])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#658])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1469])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#3374] / [Intel XE#3544])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2925])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#599]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#4596])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#5021])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#3307])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1489]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4608]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2893])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2387])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1406])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2330])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#3414] / [Intel XE#3904])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#3414]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1435])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1435])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][120] -> [SKIP][121] ([Intel XE#1435])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2426])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4837]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4837]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#4837]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-large-cm:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2322]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +10 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#4943]) +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4943]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#4915]) +74 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2457])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158]) -> ([PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [SKIP][182], [PASS][183], [PASS][184]) ([Intel XE#378])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-1/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-3/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_module_load@load.html
- shard-bmg: ([PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [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], [SKIP][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235]) ([Intel XE#2457])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-2/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_module_load@load.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#2541] / [Intel XE#3573])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_oa@missing-sample-flags.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#2284] / [Intel XE#366])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-6/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][238] ([Intel XE#2284]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#4733])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][240] ([Intel XE#4733])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#944])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][242] ([Intel XE#944]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][243] ([Intel XE#4814])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_render_copy@render-stress-1-copies.html
#### Possible fixes ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: [SKIP][244] ([Intel XE#664]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][246] ([Intel XE#3862]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][248] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][250] ([Intel XE#2291]) -> [PASS][251] +2 other tests pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [FAIL][252] ([Intel XE#2882]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [SKIP][254] ([Intel XE#2316]) -> [PASS][255] +4 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][256] ([Intel XE#1503]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
* igt@xe_prime_self_import@basic-with_one_bo:
- shard-bmg: [ABORT][258] ([Intel XE#5247]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_prime_self_import@basic-with_one_bo.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@xe_prime_self_import@basic-with_one_bo.html
- shard-dg2-set2: [ABORT][260] ([Intel XE#5247]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@xe_prime_self_import@basic-with_one_bo.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-433/igt@xe_prime_self_import@basic-with_one_bo.html
- shard-lnl: [ABORT][262] ([Intel XE#5247]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_prime_self_import@basic-with_one_bo.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-7/igt@xe_prime_self_import@basic-with_one_bo.html
* igt@xe_prime_self_import@export-vs-gem_close-race:
- shard-dg2-set2: [ABORT][264] -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@xe_prime_self_import@export-vs-gem_close-race.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_prime_self_import@export-vs-gem_close-race.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][266] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][267] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][268] ([Intel XE#2341]) -> [FAIL][269] ([Intel XE#1178]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_content_protection@atomic.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][270] ([Intel XE#2311]) -> [SKIP][271] ([Intel XE#2312]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#4141]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][274] ([Intel XE#4141]) -> [SKIP][275] ([Intel XE#2312]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-bmg: [SKIP][276] ([Intel XE#4141]) -> [SKIP][277] ([Intel XE#4141] / [Intel XE#5042])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][278] ([Intel XE#2312]) -> [SKIP][279] ([Intel XE#2311]) +12 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][280] ([Intel XE#2313]) -> [SKIP][281] ([Intel XE#2312]) +8 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][282] ([Intel XE#2312]) -> [SKIP][283] ([Intel XE#2313]) +7 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-ro:
- shard-dg2-set2: [SKIP][284] ([Intel XE#4915]) -> [INCOMPLETE][285] ([Intel XE#2594])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-ro.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-ro.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5042
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5247
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8411 -> IGTPW_13295
* Linux: xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7 -> xe-3252-4d016d6e602638e0ebc3895331224e057508c07a
IGTPW_13295: bdc2a2150836a4f130aa2265577e8544f7b10f2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7: e9c2e2a765de7f0c86d97589871410594ef8e0a7
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/index.html
[-- Attachment #2: Type: text/html, Size: 74944 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded
2025-06-13 16:20 [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded Kamil Konieczny
` (2 preceding siblings ...)
2025-06-15 13:25 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-06-15 18:07 ` Peter Senna Tschudin
3 siblings, 0 replies; 8+ messages in thread
From: Peter Senna Tschudin @ 2025-06-15 18:07 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev
Cc: Ewelina Musial, Karol Krol, Petri Latvala, Ryszard Knop,
Vitaly Prosyak, Zbigniew Kempczyński
Hi Kamil,
Tested the patch and it works. When I flood dmesg with noise it printed:
...
[3983.267252] Starting subtest: xe-base
[3983.268466] Subtest xe-base: SUCCESS (0.001s)
[3983.336445] Dmesg rate overflow 116.483KB/s > 1.000KB/s, stopping.
[3983.336455] Dmesg rate overflow 116.483KB/s > 1.000KB/s, stopping.
[3983.373483] [FACT intel_sysfs_debugfs (xe-base)] new:
kernel.kmod_is_loaded.i915: true
[3983.374436] Closing watchdogs
results: parsing output: 0/ for test: xe_module_load
results: parsing output: 1/ for test: fbdev
results: parsing output: 2/ for test: fbdev
And then aborted the run. So please add my:
Tested-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
My comment is that it feels a bit aggressive. 1KB/s over only a few
instants is way too restrictive and I assume it will abort runs that
should not be aborted.
CI commonly uses 960 seconds as the absolute timeout for the entire
list. For making up 10MB in 960 seconds we need to allow for more than
10KB/s. Can we abort only if the dmesg rate averages more than 50KB/s
for 30 seconds for example?
On 6/13/2025 6:20 PM, Kamil Konieczny wrote:
> Current disk limit triggers once when it is exceeded during test
> monitoring. After that happens executor no longer checks if
> kernel is still printing plenty of messages.
>
> Create a way to abort test in such scenarios with the help of
> measureing kernel kmsg activity before first test is executed
> and then also check it twice, first time after exceeding disk
> limit and second time after each test ends.
>
> Cc: Ewelina Musial <ewelina.musial@intel.com>
> Cc: Karol Krol <karol.krol@intel.com>
> Cc: Petri Latvala <adrinael@adrinael.net>
> Cc: Peter Senna Tschudin <peter.senna@linux.intel.com>
> Cc: Ryszard Knop <ryszard.knop@intel.com>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> runner/executor.c | 194 +++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 192 insertions(+), 2 deletions(-)
>
> diff --git a/runner/executor.c b/runner/executor.c
> index 13180a0a4..14d131c17 100644
> --- a/runner/executor.c
> +++ b/runner/executor.c
> @@ -637,6 +637,11 @@ const char *get_out_filename(int fid)
> return "output-filename-index-error";
> }
>
> +static int open_kmsg_rdonly(void)
> +{
> + return open("/dev/kmsg", O_RDONLY | O_CLOEXEC | O_NONBLOCK);
> +}
> +
> /* Returns the number of bytes written to disk, or a negative number on error */
> static long dump_dmesg(int kmsgfd, int outfd, ssize_t size)
> {
> @@ -734,6 +739,89 @@ static long dump_dmesg(int kmsgfd, int outfd, ssize_t size)
> }
> }
>
> +/*
> + * Measure how many bytes appears in dmesg.
> + * This is the same as above dump_dmesg() but with reading only.
> + */
> +static unsigned long long read_dmesg_to_null(int kmsgfd, unsigned long long size)
> +{
> + bool underflow_once = false;
> + int comparefd;
> + char buf[2048];
> + unsigned int flags;
> + unsigned long long readed = 0;
> + unsigned long long seq, cmpseq, usec;
> + char cont;
> + ssize_t r;
> +
> + if (kmsgfd < 0)
> + return 0;
> +
> + comparefd = open_kmsg_rdonly();
> + if (comparefd < 0) {
> + errf("Error opening another fd for /dev/kmsg\n");
> + return -1;
> + }
> + lseek(comparefd, 0, SEEK_END);
> +
> + while (1) {
> + if (comparefd >= 0) {
> + r = read(comparefd, buf, sizeof(buf) - 1);
> + if (r < 0) {
> + if (errno != EAGAIN && errno != EPIPE) {
> + errf("Warning: Error reading kmsg comparison record: %m\n");
> + close(comparefd);
> + return readed;
> + }
> + } else {
> + buf[r] = '\0';
> + if (sscanf(buf, "%u,%llu,%llu,%c;",
> + &flags, &cmpseq, &usec, &cont) == 4) {
> + close(comparefd);
> + comparefd = -1;
> + }
> + }
> + }
> +
> + r = read(kmsgfd, buf, sizeof(buf));
> + if (r < 0) {
> + if (errno == EPIPE) {
> + if (!underflow_once) {
> + errf("Warning: kernel log ringbuffer underflow, some records lost.\n");
> + underflow_once = true;
> + }
> + continue;
> + } else if (errno == EINVAL) {
> + errf("Warning: Buffer too small for kernel log record, record lost.\n");
> + continue;
> + } else if (errno != EAGAIN) {
> + errf("Error reading from kmsg: %m\n");
> + return 0;
> + }
> +
> + /* EAGAIN, so we're done reading */
> + close(comparefd);
> +
> + return readed;
> + }
> +
> + readed += r;
> +
> + if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;",
> + &flags, &seq, &usec, &cont) == 4) {
> + if (seq >= cmpseq)
> + return readed;
> + }
> +
> + if (size && readed >= size) {
> + if (comparefd >= 0)
> + close(comparefd);
> +
> + return readed;
> + }
> + } /* while(1) */
> +}
> +
> static bool kill_child(int sig, pid_t child)
> {
> /*
> @@ -943,6 +1031,77 @@ static size_t calc_last_dmesg_chunk(size_t limit, size_t disk_usage)
> return dt != 0 ? dt : -1;
> }
>
> +/*
> + * Returns:
> + * =>0.0 - Success, measured kmsg activity in bytes/second
> + * -1.0 - Failure
> + */
> +static double measure_dmesg_bytes_per_sec(void)
> +{
> + struct timespec time_beg, time_now, nsec_sleep;
> + unsigned long long readed = 0;
> + double time;
> + int kmsgfd, cnt;
> +
> + if ((kmsgfd = open_kmsg_rdonly()) < 0) {
> + errf("Warning: Cannot open /dev/kmsg\n");
> +
> + return -1.0;
> + }
> +
> + lseek(kmsgfd, 0, SEEK_END);
> + nsec_sleep.tv_sec = 0;
> + nsec_sleep.tv_nsec = 1000ULL * 1000ULL; /* 10^6 nanoseconds = 10^-3 sec */
> + runner_gettime(&time_beg);
> + for (cnt = 0, time = 0.0; cnt < 4 && time < 0.01; ++cnt) {
> + if (cnt && !nanosleep(&nsec_sleep, NULL))
> + break;
> +
> + readed += read_dmesg_to_null(kmsgfd, 128 * 1024); /* 64KB max */
> + runner_gettime(&time_now);
> + time = igt_time_elapsed(&time_beg, &time_now);
> + if (time < 0.0) {
> + errf("Warning: Time underflow\n");
> +
> + return -1.0;
> + }
> + }
> +
> + runner_gettime(&time_now);
> + time = igt_time_elapsed(&time_beg, &time_now);
> + if (time <= 0.0) {
> + errf("Warning: Time underflow\n");
> +
> + return -1.0;
> + }
> +
> + return (double)readed / time;
> +}
> +
> +/* Returns: true if ratio lower than maxratio */
> +static bool check_dmesg_ratio(double maxratio, int log_level, bool sync)
> +{
> + double new_dmesg_bps = measure_dmesg_bytes_per_sec();
> +
> + if (new_dmesg_bps > maxratio) {
> + char msg[1024];
> +
> + snprintf(msg, sizeof(msg), "Dmesg rate overflow %0.3fKB/s > %0.3fKB/s, stopping.\n",
> + new_dmesg_bps / 1024, maxratio / 1024);
> + if (log_level >= LOG_LEVEL_NORMAL) {
> + outf("%s", msg);
> + if (sync)
> + fflush(stdout);
> + }
> +
> + errf("%s", msg);
> +
> + return false;
> + }
> +
> + return true;
> +}
> +
> /*
> * Returns:
> * =0 - Success
> @@ -955,6 +1114,7 @@ static int monitor_output(pid_t child,
> int *outputs,
> double *time_spent,
> struct settings *settings,
> + double max_dmesg_ratio,
> char **abortreason,
> bool *abort_already_written)
> {
> @@ -1596,6 +1756,11 @@ static int monitor_output(pid_t child,
> }
> }
>
> + if (!aborting && !check_dmesg_ratio(max_dmesg_ratio, settings->log_level, settings->sync)) {
> + asprintf(abortreason, "Dmesg ratio exceeded.");
> + aborting = true;
> + }
> +
> free(buf);
> free(outbuf);
> close(outfd);
> @@ -1760,6 +1925,7 @@ static int execute_next_entry(struct execute_state *state,
> size_t total,
> double *time_spent,
> struct settings *settings,
> + double max_dmesg_ratio,
> struct job_list_entry *entry,
> int testdirfd, int resdirfd,
> int sigfd, sigset_t *sigmask,
> @@ -1808,7 +1974,7 @@ static int execute_next_entry(struct execute_state *state,
> goto out_pipe;
> }
>
> - if ((kmsgfd = open("/dev/kmsg", O_RDONLY | O_CLOEXEC | O_NONBLOCK)) < 0) {
> + if ((kmsgfd = open_kmsg_rdonly()) < 0) {
> errf("Warning: Cannot open /dev/kmsg\n");
> } else {
> /* TODO: Checking of abort conditions in pre-execute dmesg */
> @@ -1879,7 +2045,7 @@ static int execute_next_entry(struct execute_state *state,
>
> result = monitor_output(child, outfd, errfd, socketfd,
> kmsgfd, sigfd,
> - outputs, time_spent, settings,
> + outputs, time_spent, settings, max_dmesg_ratio,
> abortreason, abort_already_written);
>
> out_kmsgfd:
> @@ -2412,6 +2578,8 @@ bool execute(struct execute_state *state,
> struct settings *settings,
> struct job_list *job_list)
> {
> + static double dmesg_bps = -1.0;
> + static double max_dmesg_bps = -1.0;
> int resdirfd, testdirfd, unamefd, timefd, sigfd;
> struct environment_variable *env_var;
> struct utsname unamebuf;
> @@ -2554,6 +2722,24 @@ bool execute(struct execute_state *state,
> }
> }
>
> + if (max_dmesg_bps < 0.0) {
> + double ncpu_bps = 1024 * max_t(size_t, sysconf(_SC_NPROCESSORS_ONLN), 4);
> + double set_bps = 0.0;
> +
> + dmesg_bps = measure_dmesg_bytes_per_sec();
> +
> + if (settings->disk_usage_limit > 0 && settings->per_test_timeout > 0)
> + set_bps = (double)settings->disk_usage_limit / (double)settings->per_test_timeout;
> + else if (settings->disk_usage_limit > 0)
> + set_bps = (double)settings->disk_usage_limit;
> +
> + outf("Dmesg KB/s ratio settings:%0.3f ncpu:%0.3f current:%0.3f\n",
> + set_bps / 1024, ncpu_bps / 1024, dmesg_bps / 1024);
> +
> + max_dmesg_bps = dmesg_bps <= 0.0 ? 1024.0 : dmesg_bps + 1024.0;
> + outf("Using max level dmesg ratio %0.3fKB/s\n", max_dmesg_bps / 1024);
> + }
> +
> for (; state->next < job_list->size;
> state->next++) {
> char *reason = NULL;
> @@ -2590,6 +2776,7 @@ bool execute(struct execute_state *state,
> job_list->size,
> &time_spent,
> settings,
> + max_dmesg_bps,
> &job_list->entries[state->next],
> testdirfd, resdirfd,
> sigfd, &sigmask,
> @@ -2645,6 +2832,9 @@ bool execute(struct execute_state *state,
> break;
> }
>
> + if (!check_dmesg_ratio(max_dmesg_bps, settings->log_level, settings->sync))
> + break;
> +
> if (result > 0) {
> double time_left = state->time_left;
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for runner/executor: Abort if dmesg is flooded
2025-06-13 18:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2025-06-17 10:49 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2025-06-17 10:49 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2025-06-13 at 18:01:07 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: runner/executor: Abort if dmesg is flooded
> URL : https://patchwork.freedesktop.org/series/150246/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8411_BAT -> XEIGTPW_13295_BAT
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_13295_BAT absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_13295_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (8 -> 8)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_13295_BAT:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
> - bat-lnl-1: [PASS][1] -> [ABORT][2] +1 other test abort
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/bat-lnl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
>
please do not file a bug, this is a bug/feature instroduced by
this patch in igt_runner.
Regards,
Kamil
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_13295_BAT that come from known issues:
>
...cut...
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ i915.CI.BAT: failure for runner/executor: Abort if dmesg is flooded
2025-06-13 18:22 ` ✗ i915.CI.BAT: " Patchwork
@ 2025-06-17 10:56 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2025-06-17 10:56 UTC (permalink / raw)
To: igt-dev
Hi igt-dev,
On 2025-06-13 at 18:22:41 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: runner/executor: Abort if dmesg is flooded
> URL : https://patchwork.freedesktop.org/series/150246/
> State : failure
Please do not file a bug for ABORT with 'Dmesg ratio exceeded'
This is introduced by this patch to igt_runner,
also no need for full i915 run as this is experimental.
Regards,
Kamil
>
> == Summary ==
>
> CI Bug Log - changes from IGT_8411 -> IGTPW_13295
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_13295 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_13295, 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_13295/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_13295:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_lmem_swapping@parallel-random-engines:
> - fi-blb-e6850: NOTRUN -> [ABORT][1]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-blb-e6850/igt@gem_lmem_swapping@parallel-random-engines.html
>
> * igt@i915_module_load@reload:
> - fi-cfl-guc: NOTRUN -> [ABORT][2]
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-cfl-guc/igt@i915_module_load@reload.html
>
> * igt@i915_selftest@live:
> - bat-jsl-1: NOTRUN -> [DMESG-WARN][3] +1 other test dmesg-warn
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-jsl-1/igt@i915_selftest@live.html
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
> - fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
>
> * igt@kms_hdmi_inject@inject-audio:
> - bat-kbl-2: [PASS][6] -> [ABORT][7]
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-kbl-2/igt@kms_hdmi_inject@inject-audio.html
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-kbl-2/igt@kms_hdmi_inject@inject-audio.html
>
> * igt@vgem_basic@dmabuf-fence:
> - fi-skl-6600u: NOTRUN -> [ABORT][8]
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/fi-skl-6600u/igt@vgem_basic@dmabuf-fence.html
>
>
> #### Warnings ####
>
> * igt@prime_self_import@basic-with_one_bo:
> - bat-twl-2: [ABORT][9] ([i915#14463]) -> [ABORT][10]
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-twl-2/igt@prime_self_import@basic-with_one_bo.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13295/bat-twl-2/igt@prime_self_import@basic-with_one_bo.html
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_13295 that come from known issues:
>
...cut...
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.Full: failure for runner/executor: Abort if dmesg is flooded
2025-06-15 13:25 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-06-17 10:58 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2025-06-17 10:58 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2025-06-15 at 13:25:16 -0000, Patchwork wrote:
please do not file a bug for ABORT with 'Dmesg ratio exceeded'
This is new experimental feature in igt_runner.
Regards,
Kamil
> == Series Details ==
>
> Series: runner/executor: Abort if dmesg is flooded
> URL : https://patchwork.freedesktop.org/series/150246/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8411_FULL -> XEIGTPW_13295_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_13295_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_13295_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 -> 3)
> ------------------------------
>
> Missing (1): shard-adlp
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_13295_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1:
> - shard-lnl: NOTRUN -> [SKIP][1]
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic@pipe-b-edp-1.html
>
> * igt@xe_drm_fdinfo@parallel-utilization-single-idle:
> - shard-dg2-set2: [PASS][2] -> [ABORT][3]
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap:
> - shard-lnl: NOTRUN -> [ABORT][4] +1 other test abort
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap.html
>
> * igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset:
> - shard-lnl: [PASS][5] -> [ABORT][6] +16 other tests abort
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-8/igt@xe_exec_system_allocator@twice-large-new-bo-map-nomemset.html
>
>
> #### Warnings ####
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
> - shard-dg2-set2: [SKIP][7] ([Intel XE#1124]) -> [ABORT][8]
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>
> * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
> - shard-dg2-set2: [SKIP][9] ([Intel XE#455] / [Intel XE#787]) -> [ABORT][10] +1 other test abort
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
>
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
> - shard-lnl: [SKIP][11] ([Intel XE#2893]) -> [ABORT][12]
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
>
> * igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset:
> - shard-dg2-set2: [SKIP][13] ([Intel XE#4915]) -> [ABORT][14]
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html
>
> * igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
> - shard-dg2-set2: [SKIP][15] ([Intel XE#4733]) -> [ABORT][16]
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13295/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
>
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_13295_FULL that come from known issues:
>
...cut...
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-06-17 10:58 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-13 16:20 [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded Kamil Konieczny
2025-06-13 18:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-06-17 10:49 ` Kamil Konieczny
2025-06-13 18:22 ` ✗ i915.CI.BAT: " Patchwork
2025-06-17 10:56 ` Kamil Konieczny
2025-06-15 13:25 ` ✗ Xe.CI.Full: " Patchwork
2025-06-17 10:58 ` Kamil Konieczny
2025-06-15 18:07 ` [PATCH i-g-t v1] " Peter Senna Tschudin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.