[LTP] [PATCH] cve: icmp_rate_limit: Make sure icmp_msgs_burst = 50
Cyril Hrubis
chrubis@suse.cz
Thu Mar 12 11:43:22 CET 2026
The test is written with an assumption that the burst for icmp message
is 50 since it sends 100 messages in a batch and expects the kernel to
go over the limit. The easiest way how to fix the test is to set the
sysctl to 50 before the test and restore it later.
Suggested-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
testcases/cve/icmp_rate_limit01.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/testcases/cve/icmp_rate_limit01.c b/testcases/cve/icmp_rate_limit01.c
index 0305ad095..78480cea6 100644
--- a/testcases/cve/icmp_rate_limit01.c
+++ b/testcases/cve/icmp_rate_limit01.c
@@ -255,6 +255,7 @@ static struct tst_test test = {
},
.save_restore = (const struct tst_path_val[]) {
{"/proc/sys/user/max_user_namespaces", "1024", TST_SR_SKIP},
+ {"/proc/sys/net/ipv4/icmp_msgs_burst", "50", TST_SR_TBROK},
{}
},
.tags = (const struct tst_tag[]) {
--
2.52.0
More information about the ltp
mailing list