From 1910fdde818e82b28136481a72cd74e4c67f0975 Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Fri, 2 Jun 2023 18:40:45 -0600 Subject: [PATCH] contrib/check-config: check for xt_bpf We omit xt_u32 as it's optional; since we will remove support for this module in the future, it's simpler to check for xt_bpf, which will become the new baseline. Related issues: * https://github.com/microsoft/WSL/issues/10029#issuecomment-1574440255 * https://github.com/docker/for-win/issues/13450#issuecomment-1574443139 Signed-off-by: Bjorn Neergaard --- contrib/check-config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/check-config.sh b/contrib/check-config.sh index d0f83b83e6..58e3256820 100755 --- a/contrib/check-config.sh +++ b/contrib/check-config.sh @@ -220,6 +220,7 @@ check_flags \ VETH BRIDGE BRIDGE_NETFILTER \ IP_NF_FILTER IP_NF_TARGET_MASQUERADE \ NETFILTER_XT_MATCH_ADDRTYPE \ + NETFILTER_XT_MATCH_BPF \ NETFILTER_XT_MATCH_CONNTRACK \ NETFILTER_XT_MATCH_IPVS \ NETFILTER_XT_MARK \