Home
last modified time | relevance | path

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

/f-stack/freebsd/net80211/
H A Dieee80211_freebsd.h70 #define IEEE80211_LOCK_OBJ(_ic) (&(_ic)->ic_comlock.mtx) macro
71 #define IEEE80211_LOCK_DESTROY(_ic) mtx_destroy(IEEE80211_LOCK_OBJ(_ic))
72 #define IEEE80211_LOCK(_ic) mtx_lock(IEEE80211_LOCK_OBJ(_ic))
73 #define IEEE80211_UNLOCK(_ic) mtx_unlock(IEEE80211_LOCK_OBJ(_ic))
75 mtx_assert(IEEE80211_LOCK_OBJ(_ic), MA_OWNED)
77 mtx_assert(IEEE80211_LOCK_OBJ(_ic), MA_NOTOWNED)
H A Dieee80211_dfs.c104 callout_init_mtx(&dfs->nol_timer, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_dfs_attach()
105 callout_init_mtx(&dfs->cac_timer, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_dfs_attach()
H A Dieee80211_scan_sw.c656 mtx_sleep(vap, IEEE80211_LOCK_OBJ(ic), PCATCH, in scan_start()
H A Dieee80211_proto.c341 callout_init_mtx(&vap->iv_swbmiss, IEEE80211_LOCK_OBJ(ic), 0); in ieee80211_proto_vattach()