Add error counter handling in bridge_fragment().
Assisted-by: Claude Code (Fable 5, Opus 5)
Differential D59391
if_bridge: count the drops of the fragmentation path Authored by netchild on Fri, Sep 4, 1:52 PM. Tags None Referenced Files
Details Add error counter handling in bridge_fragment(). Assisted-by: Claude Code (Fable 5, Opus 5)
Diff Detail
Event TimelineComment Actions The following part may need to get a rework for this change... investigating... default: if (V_pfil_onlyip) goto bad; Comment Actions The bad: label in the previous revision gets called for ether types 0x88e1 (HomePlug AV management frames) and 0x8912 (not named in sys/net/ethernet.h) via the default: case and with net.link.bridge.pfil_onlyip=1. This looks to me like a policy drop and not an error path. As such I removed that part. Correct me if I get this wrong... (447 such packets in 300s doesn't not sound like an error to me). |