From 4c24deac20090de852988d3a54b1d9e354caeba1 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Tue, 18 Jan 2005 19:31:31 +0000 Subject: [PATCH] disable interrupts when transitioning to INIT state so we don't rx frames --- sys/dev/ath/if_ath.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index d999db70882b..e215522fd2a0 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -3885,7 +3885,10 @@ ath_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg) if (nstate == IEEE80211_S_INIT) { sc->sc_imask &= ~(HAL_INT_SWBA | HAL_INT_BMISS); - ath_hal_intrset(ah, sc->sc_imask); + /* + * NB: disable interrupts so we don't rx frames. + */ + ath_hal_intrset(ah, sc->sc_imask &~ ~HAL_INT_GLOBAL); /* * Notify the rate control algorithm. */