Lines Matching defs:_ndev
41 #define NAPI_LOCK_INIT(_ndev) \
42 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)