aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2024-12-12 14:40:49 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2025-02-12 14:06:14 +0000
commitbd6a89a6c32a0f5b08182ea06e625a6695f3fbb0 (patch)
treea522ee740b5c7a6aa6ffa41df4b4955cf0393765 /sys
parent1b4561cf4b46ffbbd8851aa40bd0402a6bba8906 (diff)
icmp: improve INVARIANTS check
Actually check the conditions that are enforced by the error checking code instead of a condition which is * checking a number to be non-negative instead of positive * depending on a random number Perform the checks consistently for ICMPv4 and ICMPv6. Reviewed by: glebius, rrs, cc MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D48001 (cherry picked from commit c9febea3dc8ac8e308e8fc5a2e74dd0313fdc5d2)
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_icmp.c2
-rw-r--r--sys/netinet6/icmp6.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c
index 67adc1245b60..f4b697f30eee 100644
--- a/sys/netinet/ip_icmp.c
+++ b/sys/netinet/ip_icmp.c
@@ -1142,7 +1142,7 @@ sysctl_icmplim_and_jitter(SYSCTL_HANDLER_ARGS)
}
}
}
- MPASS(V_icmplim + V_icmplim_curr_jitter >= 0);
+ MPASS(V_icmplim == 0 || V_icmplim > V_icmplim_jitter);
return (error);
}
diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c
index a26348640cbc..52430f9146ae 100644
--- a/sys/netinet6/icmp6.c
+++ b/sys/netinet6/icmp6.c
@@ -2856,7 +2856,7 @@ sysctl_icmp6lim_and_jitter(SYSCTL_HANDLER_ARGS)
}
}
}
- MPASS(V_icmp6errppslim + V_icmp6lim_curr_jitter >= 0);
+ MPASS(V_icmp6errppslim == 0 || V_icmp6errppslim > V_icmp6lim_jitter);
return (error);
}