From: Peter Senna Tschudin <peter.senna@linux.intel.com>
To: Kamil Konieczny <kamil.konieczny@linux.intel.com>,
igt-dev@lists.freedesktop.org
Cc: "Ewelina Musial" <ewelina.musial@intel.com>,
"Karol Krol" <karol.krol@intel.com>,
"Petri Latvala" <adrinael@adrinael.net>,
"Ryszard Knop" <ryszard.knop@intel.com>,
"Vitaly Prosyak" <vitaly.prosyak@amd.com>,
"Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Subject: Re: [PATCH i-g-t v1] runner/executor: Abort if dmesg is flooded
Date: Sun, 15 Jun 2025 20:07:35 +0200 [thread overview]
Message-ID: <8aba0bb4-a674-4534-a17a-0cdfbbf191e3@linux.intel.com> (raw)
In-Reply-To: <20250613162013.103165-1-kamil.konieczny@linux.intel.com>
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;
>
prev parent reply other threads:[~2025-06-15 18:07 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Peter Senna Tschudin [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8aba0bb4-a674-4534-a17a-0cdfbbf191e3@linux.intel.com \
--to=peter.senna@linux.intel.com \
--cc=adrinael@adrinael.net \
--cc=ewelina.musial@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.intel.com \
--cc=karol.krol@intel.com \
--cc=ryszard.knop@intel.com \
--cc=vitaly.prosyak@amd.com \
--cc=zbigniew.kempczynski@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.