From 0de3195e97b03f584d0d3e9467b3c4315d2b13ad Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Mon, 10 Aug 2026 16:42:12 +0000 Subject: [PATCH] Also filter out netfs: messages when nfs tests run. On el10, the kernel by default probes netfs while doing nfs setup, and emits: ``` netfs: FS-Cache loaded ``` Squelch it in filters. Signed-off-by: Auke Kok --- tests/funcs/filter.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/funcs/filter.sh b/tests/funcs/filter.sh index 8d238684..75d90007 100644 --- a/tests/funcs/filter.sh +++ b/tests/funcs/filter.sh @@ -178,6 +178,7 @@ t_filter_dmesg() re="$re|NFSD: .*" re="$re|RPC: .*" re="$re|FS-Cache: .*" + re="$re|netfs: .*" # fencing tests force unmounts and trigger timeouts re="$re|scoutfs .* forcing unmount"