Home
last modified time | relevance | path

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

/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_netdev.c42 mtx_init(&(_ndev)->napi_mtx, "napi_mtx", NULL, MTX_DEF)
43 #define NAPI_LOCK_DESTROY(_ndev) mtx_destroy(&(_ndev)->napi_mtx)
44 #define NAPI_LOCK_ASSERT(_ndev) mtx_assert(&(_ndev)->napi_mtx, MA_OWNED)
45 #define NAPI_LOCK(_ndev) mtx_lock(&(_ndev)->napi_mtx)
46 #define NAPI_UNLOCK(_ndev) mtx_unlock(&(_ndev)->napi_mtx)
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dnetdevice.h153 struct mtx napi_mtx; member