CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2020/04/10 01:36:52
Modified files: sys/net : if_pppx.c Log message: Place the 64bit key on the stack instead of malloc(9)in' it in pppx_if_find(). Removing a malloc(9) with M_WAITOK reduces possible context switches which helps when dealing with parallelism issues. >From Vitaliy Makkoveev.