Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Mar 2008 22:36:49 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 138755 for review
Message-ID:  <200803272236.m2RManpf080375@repoman.freebsd.org>

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

Change 138755 by sam@sam_ebb on 2008/03/27 22:36:21

	must explicitly enable interrupts for RUN transition of monitor
	mode vaps to handle case of a single monitor mode vap

Affected files ...

.. //depot/projects/vap/sys/dev/ath/if_ath.c#51 edit

Differences ...

==== //depot/projects/vap/sys/dev/ath/if_ath.c#51 (text+ko) ====

@@ -5624,6 +5624,14 @@
 			 */
 			sc->sc_syncbeacon = 1;
 			break;
+		case IEEE80211_M_MONITOR:
+			/*
+			 * Monitor mode vaps have only INIT->RUN and RUN->RUN
+			 * transitions so we must re-enable interrupts here to
+			 * handle the case of a single monitor mode vap.
+			 */
+			ath_hal_intrset(ah, sc->sc_imask);
+			break;
 		case IEEE80211_M_WDS:
 			break;
 		default:



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