PERFORCE change 138755 for review

Sam Leffler sam at FreeBSD.org
Thu Mar 27 15:36:50 PDT 2008


http://perforce.freebsd.org/chv.cgi?CH=138755

Change 138755 by sam at 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:


More information about the p4-projects mailing list