CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2025/12/08 20:38:11
Modified files:
sys/net : if_vlan.c
Log message:
replace if_get with if_get_smr in the vlan transmit path.
this mitigates against hammering the parent interface refcnt when
transmitting packets.
this means we call if_enqueue against the parent interface from an
smr critical section rather than calling it while holding a "real"
ref, but aggr has been calling if_enqueue from an smr critical
section for years without issue.