Home
last modified time | relevance | path

Searched refs:IEEE80211_LOCK_OBJ (Results 1 – 4 of 4) sorted by relevance

/freebsd-13-stable/sys/net80211/
HDieee80211_freebsd.h68 #define IEEE80211_LOCK_OBJ(_ic) (&(_ic)->ic_comlock.mtx) macro
69 #define IEEE80211_LOCK_DESTROY(_ic) mtx_destroy(IEEE80211_LOCK_OBJ(_ic))
70 #define IEEE80211_LOCK(_ic) mtx_lock(IEEE80211_LOCK_OBJ(_ic))
71 #define IEEE80211_UNLOCK(_ic) mtx_unlock(IEEE80211_LOCK_OBJ(_ic))
73 mtx_assert(IEEE80211_LOCK_OBJ(_ic), MA_OWNED)
75 mtx_assert(IEEE80211_LOCK_OBJ(_ic), MA_NOTOWNED)
HDieee80211_dfs.c103 callout_init_mtx(&dfs->nol_timer, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_dfs_attach()
104 callout_init_mtx(&dfs->cac_timer, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_dfs_attach()
HDieee80211_scan_sw.c656 mtx_sleep(vap, IEEE80211_LOCK_OBJ(ic), PCATCH, in scan_start()
HDieee80211_proto.c341 callout_init_mtx(&vap->iv_swbmiss, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_proto_vattach()