On Fri, Dec 19, 2025 at 07:48:42PM +0100, Dimitry Andric wrote:
D> What I'm seeing with main-n282652-4100bd6caa66 is this:
D>
D> panic: bpf_ifnet_write: ifp 0xfffff8002d492800 type 209 not supported
This is a very different thing, but this is also mine :(
Fortunately it is a trivial miss. Please confirm the attached
patch works.
--
Gleb Smirnoff
diff --git a/sys/net/bpf_ifnet.c b/sys/net/bpf_ifnet.c
index d4fd50bd3d8e..4123e9144fe8 100644
--- a/sys/net/bpf_ifnet.c
+++ b/sys/net/bpf_ifnet.c
@@ -89,6 +89,7 @@ bpf_ifnet_write(void *arg, struct mbuf *m, struct mbuf *mc, int flags)
/* DLT_EN10MB */
case IFT_ETHER: /* if_ethersubr.c */
case IFT_L2VLAN: /* vlan(4) */
+ case IFT_BRIDGE: /* if_bridge(4) */
case IFT_IEEE8023ADLAG: /* lagg(4) */
case IFT_INFINIBAND: /* if_infiniband.c */
{