Home
last modified time | relevance | path

Searched refs:ifnet_sxlock (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/net/
H A Dif_var.h596 extern struct sx ifnet_sxlock;
598 #define IFNET_WLOCK() sx_xlock(&ifnet_sxlock)
599 #define IFNET_WUNLOCK() sx_xunlock(&ifnet_sxlock)
600 #define IFNET_RLOCK_ASSERT() sx_assert(&ifnet_sxlock, SA_SLOCKED)
601 #define IFNET_WLOCK_ASSERT() sx_assert(&ifnet_sxlock, SA_XLOCKED)
602 #define IFNET_RLOCK() sx_slock(&ifnet_sxlock)
603 #define IFNET_RUNLOCK() sx_sunlock(&ifnet_sxlock)
H A Dif.c314 struct sx ifnet_sxlock; variable
315 SX_SYSINIT_FLAGS(ifnet_sx, &ifnet_sxlock, "ifnet_sx", SX_RECURSE);