From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
To: igt-dev@lists.freedesktop.org
Cc: "Kamil Konieczny" <kamil.konieczny@linux.intel.com>,
"Jonathan Cavitt" <jonathan.cavitt@intel.com>,
"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
"Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Subject: [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings
Date: Fri, 8 Nov 2024 21:18:36 +0100 [thread overview]
Message-ID: <20241108201839.119079-2-kamil.konieczny@linux.intel.com> (raw)
In-Reply-To: <20241108201839.119079-1-kamil.konieczny@linux.intel.com>
There are more warnings in dmesg which should be ignored,
one comes from driver, for example:
xe 0000:00:02.0: [drm] *ERROR* GT0: reset failed (-ECANCELED)
xe 0000:00:02.0: [drm] *ERROR* GT1: Failed to submit gsc proxy rq (-ETIME)
or from drm:
<4> [438.651441] ? __pfx___drm_printfn_seq_file+0x10/0x10 [drm]
<4> [438.651476] ? __pfx___drm_puts_seq_file+0x10/0x10 [drm]
or from kernel itself:
<4> [226.597358] Modules linked in:
so extend regex with them.
v2: move '|' to begin of strings for better reading (Jonathan)
extend regex with two more, correct __pfx___ regex (Kamil)
added r-b and correcting name in Cc
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2919
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
tests/intel/xe_wedged.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
index 88e5d47f2..123ce6396 100644
--- a/tests/intel/xe_wedged.c
+++ b/tests/intel/xe_wedged.c
@@ -29,7 +29,11 @@
static void ignore_wedged_in_dmesg(void)
{
/* this is needed for igt_runner so it will ignore it */
- igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged");
+ igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged"
+ "|GT[0-9A-Fa-f]*: reset failed .-ECANCELED"
+ "|GT[0-9A-Fa-f]*: Failed to submit"
+ "|Modules linked in:"
+ "|__pfx___drm_.*drm");
}
static void force_wedged(int fd)
--
2.47.0
next prev parent reply other threads:[~2024-11-08 20:18 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-08 20:18 ` Kamil Konieczny [this message]
2024-11-08 22:25 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Rodrigo Vivi
2024-11-08 20:18 ` [PATCH i-g-t v3 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
2024-11-08 21:23 ` ✗ Fi.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev3) Patchwork
2024-11-08 22:11 ` ✗ CI.xeBAT: " Patchwork
2024-11-10 0:33 ` ✗ CI.xeFULL: " Patchwork
2024-11-26 16:42 ` Kamil Konieczny
2024-11-25 21:35 ` ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4) Patchwork
2024-11-26 16:36 ` Kamil Konieczny
2024-11-25 21:43 ` ✗ Xe.CI.BAT: " Patchwork
2024-11-26 16:38 ` Kamil Konieczny
2024-11-26 0:12 ` ✗ Xe.CI.Full: " Patchwork
2024-11-26 16:40 ` Kamil Konieczny
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=20241108201839.119079-2-kamil.konieczny@linux.intel.com \
--to=kamil.konieczny@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=jonathan.cavitt@intel.com \
--cc=rodrigo.vivi@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox