mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
ath9k: Fix crash in MCC mode
When a channel context is removed, the hw_queue_base is set to -1, this will result in a panic because ath9k_chanctx_stop_queues() can be called on an interface that is not assigned to any context yet - for example, when trying to scan. Fix this issue by setting the hw_queue_base to zero when a channel context is removed. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d2a993e20e
commit
b18111d911
@ -2332,7 +2332,7 @@ static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
|
||||
conf->def.chan->center_freq);
|
||||
|
||||
ctx->assigned = false;
|
||||
ctx->hw_queue_base = -1;
|
||||
ctx->hw_queue_base = 0;
|
||||
ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
|
||||
|
||||
mutex_unlock(&sc->mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user