CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/01/04 14:21:41
Modified files:
sys/net : if.c if_ethersubr.c if_pppoe.c if_pppoe.h
netisr.h
Log message:
Process pppoe(4) packets directly, do not queue through netis
Less scheduling, lock contention and queues.
Previously, if_netisr() handled the net lock around those calls, now
if_input_process() does it before calling ether_input(), so no need to add
or remove NET_*LOCK() anywhere.
OK mvs claudio
