On 12/18/25 19:26, Cy Schubert wrote:
The branch stable/15 has been updated by cy:
URL:
https://cgit.FreeBSD.org/src/commit/?id=1b96cdea82c77191fb4e777ab63428de95f56d3b
commit 1b96cdea82c77191fb4e777ab63428de95f56d3b
Author: Cy Schubert <[email protected]>
AuthorDate: 2025-12-15 16:21:56 +0000
Commit: Cy Schubert <[email protected]>
CommitDate: 2025-12-19 00:26:07 +0000
ipfilter: Add missing kenv fetch
When a module the environment must be explicitly fetched.
Fixes: d9788eabffa4
PR: 291548
Noted by: markj
Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D54242
MFC after: 3 days
(cherry picked from commit a6ea80bc917510b5e056cc5a29b62dfd7b39d068)
This doesn't build on either stable/15 or stable/14:
/usr/src/sys/netpfil/ipfilter/netinet/ip_fil_freebsd.c:1461:11: error: no
member named 'ipf_jail_allowed' in 'struct ipf_main_softc_s'
1461 | &softc->ipf_jail_allowed);
| ~~~~~ ^
/usr/src/sys/sys/kernel.h:334:58: note: expanded from macro 'TUNABLE_INT_FETCH'
334 | #define TUNABLE_INT_FETCH(path, var) getenv_int((path), (var))
| ^~~
1 error generated.
*** [ip_fil_freebsd.o] Error code 1
--
John Baldwin