CVSROOT: /cvs Module name: src Changes by: [email protected] 2018/09/25 07:46:44
Modified files:
sys/dev/pv : if_vio.c
Log message:
Insert a workaround for per-ifp ioctl being called w/o NET_LOCK().
An example of such code path is vlan_destroy() where we don't want to
grab the lock because this driver is already NET_LOCK()-free.
The real solution to this problem is to stop holding the NET_LOCK() around
driver *_ioctl() routines.
Problem reported & fix tested by ??lie Bouttier, ok visa@, bluhm@
