[Bug 296944] sys/netpfil/common/rdr:ipfnat_local_redirect test failing in CI
Date: Mon, 10 Aug 2026 08:19:45 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=296944
--- Comment #8 from Michael Tuexen <tuexen@freebsd.org> ---
The following change disables checksum offloading also on FreeBSD and therefore
works around the issue in ipfilter:
diff --git a/sys/netpfil/ipfilter/netinet/fil.c
b/sys/netpfil/ipfilter/netinet/fil.c
index 7b646d0d55db..9e26a27defcf 100644
--- a/sys/netpfil/ipfilter/netinet/fil.c
+++ b/sys/netpfil/ipfilter/netinet/fil.c
@@ -2849,7 +2849,7 @@ ipf_check(void *ctx, ip_t *ip, int hlen, struct ifnet
*ifp, int out
*/
m->m_flags &= ~M_CANFASTFWD;
# endif /* M_CANFASTFWD */
-# if defined(CSUM_DELAY_DATA) && !defined(__FreeBSD__)
+# if defined(CSUM_DELAY_DATA)
/*
* disable delayed checksums.
*/
--
You are receiving this mail because:
You are on the CC list for the bug.