From: Matthieu Baerts (NGI0) Date: Fri, 14 Nov 2025 18:12:07 +0000 (+0100) Subject: selftests: mptcp: lib: stats: remove nstat rate columns X-Git-Tag: v6.19-rc1~170^2~150^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e6daf6b9bc86e3fe0e3217def16aaaaf0924801;p=thirdparty%2Fkernel%2Flinux.git selftests: mptcp: lib: stats: remove nstat rate columns With the MPTCP selftests, the nstat daemon is not used. It means that the last column (the rate) is always 0.0, and that's not something interesting to display. Then, this last column can be filtered out. Acked-by: Paolo Abeni Signed-off-by: Matthieu Baerts (NGI0) Link: https://patch.msgid.link/20251114-net-next-mptcp-sft-count-cache-stats-timeout-v1-3-863cb04e1b7b@kernel.org Signed-off-by: Jakub Kicinski --- diff --git a/tools/testing/selftests/net/mptcp/mptcp_lib.sh b/tools/testing/selftests/net/mptcp/mptcp_lib.sh index 4a26d4150603c..c5571100f797a 100644 --- a/tools/testing/selftests/net/mptcp/mptcp_lib.sh +++ b/tools/testing/selftests/net/mptcp/mptcp_lib.sh @@ -390,9 +390,9 @@ mptcp_lib_nstat_init() { mptcp_lib_nstat_get() { local ns="${1}" - # filter out non-*TCP stats + # filter out non-*TCP stats, and the rate (last column) NSTAT_HISTORY="/tmp/${ns}.nstat" ip netns exec "${ns}" nstat | - grep Tcp > "/tmp/${ns}.out" + grep -o ".*Tcp\S\+\s\+[0-9]\+" > "/tmp/${ns}.out" } # $1: ns, $2: MIB counter