Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2008 18:01:10 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 153363 for review
Message-ID:  <200811221801.mAMI1AXg070729@repoman.freebsd.org>

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

Change 153363 by sam@sam_ebb on 2008/11/22 18:00:23

	be paranoid and clear the ASSOCID flag together with AREF; they
	are managed together

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_node.c#53 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_node.c#53 (text+ko) ====

@@ -899,8 +899,10 @@
 	 * has happened.  This is probably not needed as the node
 	 * should always be removed from the table so not found but
 	 * do it just in case.
+	 * Likewise clear the ASSOCID flag as these flags are intended
+	 * to be managed in tandem.
 	 */
-	ni->ni_flags &= ~IEEE80211_NODE_AREF;
+	ni->ni_flags &= ~(IEEE80211_NODE_AREF | IEEE80211_NODE_ASSOCID);
 
 	/*
 	 * Drain power save queue and, if needed, clear TIM.



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