created | 2021-01-10T13:18:03Z |
---|---|
begin | 2021-01-04T15:02:34Z |
end | 2021-01-04T21:21:41Z |
path | src/sys |
commits | 1 |
date | 2021-01-04T21:21:41Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/net/if.c | log | diff | annotate |
src/sys/net/if_ethersubr.c | log | diff | annotate | |
src/sys/net/if_pppoe.c | log | diff | annotate | |
src/sys/net/if_pppoe.h | log | diff | annotate | |
src/sys/net/netisr.h | log | diff | annotate | |
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 |