Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Apr 2008 15:41:55 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 139519 for review
Message-ID:  <200804071541.m37FftZl051046@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=139519

Change 139519 by sam@sam_ebb on 2008/04/07 15:41:28

	gc beacon lock; it was replaced by the com lock long ago

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_freebsd.h#22 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_freebsd.h#22 (text+ko) ====

@@ -42,18 +42,6 @@
 	mtx_assert(&(_ic)->ic_comlock, MA_OWNED)
 
 /*
- * Beacon locking definitions.
- */
-typedef struct mtx ieee80211_beacon_lock_t;
-#define	IEEE80211_BEACON_LOCK_INIT(_ic, _name) \
-	mtx_init(&(_ic)->ic_beaconlock, _name, "802.11 beacon lock", MTX_DEF)
-#define	IEEE80211_BEACON_LOCK_DESTROY(_ic) mtx_destroy(&(_ic)->ic_beaconlock)
-#define	IEEE80211_BEACON_LOCK(_ic)	   mtx_lock(&(_ic)->ic_beaconlock)
-#define	IEEE80211_BEACON_UNLOCK(_ic)	   mtx_unlock(&(_ic)->ic_beaconlock)
-#define	IEEE80211_BEACON_LOCK_ASSERT(_ic) \
-	mtx_assert(&(_ic)->ic_beaconlock, MA_OWNED)
-
-/*
  * Node locking definitions.
  */
 typedef struct mtx ieee80211_node_lock_t;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804071541.m37FftZl051046>