CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2020/05/26 01:01:54
Modified files: sys/net : if_pppx.c Log message: Kill unecessary `pppx_ifs_lk' lock. Premature locking is causing more trouble than it is solving issue. In this case the lifetime of descriptors is protected by the KERNEL_LOCK() so using a rwlock for the lookup introduce sleeping points and possible new races without benefit. >From Vitaliy Makkoveev.