Searched refs:core_sx (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/dev/vnic/
H A Dnic.h296 struct sx core_sx; member in struct:nicvf
H A Dnicvf_main.c93 sx_init(&(nic)->core_sx, device_get_nameunit((nic)->dev))
96 sx_destroy(&(nic)->core_sx)
98 #define NICVF_CORE_LOCK(nic) sx_xlock(&(nic)->core_sx)
99 #define NICVF_CORE_UNLOCK(nic) sx_xunlock(&(nic)->core_sx)
101 #define NICVF_CORE_LOCK_ASSERT(nic) sx_assert(&(nic)->core_sx, SA_XLOCKED)
/freebsd-11-stable/sys/dev/bxe/
H A Dbxe.h1441 struct sx core_sx; member in struct:bxe_softc
1461 #define BXE_CORE_TRYLOCK(sc) sx_try_xlock(&sc->core_sx)
1462 #define BXE_CORE_LOCK(sc) sx_xlock(&sc->core_sx)
1463 #define BXE_CORE_UNLOCK(sc) sx_xunlock(&sc->core_sx)
1464 #define BXE_CORE_LOCK_ASSERT(sc) sx_assert(&sc->core_sx, SA_XLOCKED)
H A Dbxe.c2548 sx_init(&sc->core_sx, sc->core_sx_name);
2588 sx_destroy(&sc->core_sx);

Completed in 141 milliseconds