CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2025/05/19 18:37:17
Modified files: sys/netinet6 : in6_proto.c Log message: Run IPv6 fragment reassembly in parallel. frag6_input() is MP-safe, a global mutex is protecting it. Set PR_MPINPUT protocol flag to run it in parallel from ip_deliver() loop. Note that this only affects configurations where pf(4) has been turned off, as pf does its own fragment reassembly. OK mvs@