mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
ath10k: fix soft lockup during firmware crash/hw-restart
commitc2cac2f74aupstream. During firmware crash (or) user requested manual restart the system gets into a soft lock up state because of the below root cause. During user requested hardware restart / firmware crash the system goes into a soft lockup state as 'napi_synchronize' is called after 'napi_disable' (which sets 'NAPI_STATE_SCHED' bit) and it sleeps into infinite loop as it waits for 'NAPI_STATE_SCHED' to be cleared. This condition is hit because 'ath10k_hif_stop' is called twice as below (resulting in calling 'napi_synchronize' after 'napi_disable') 'ath10k_core_restart' -> 'ath10k_hif_stop' (ATH10K_STATE_ON) -> -> 'ieee80211_restart_hw' -> 'ath10k_start' -> 'ath10k_halt' -> 'ath10k_core_stop' -> 'ath10k_hif_stop' (ATH10K_STATE_RESTARTING) Fix this by calling 'ath10k_halt' in ath10k_core_restart itself as it makes more sense before informing mac80211 to restart h/w Also remove 'ath10k_halt' in ath10k_start for the state of 'restarting' Fixes:3c97f5de1f("ath10k: implement NAPI support") Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b8425f4134
commit
ea23fca0c6
@@ -1534,7 +1534,7 @@ static void ath10k_core_restart(struct work_struct *work)
|
|||||||
switch (ar->state) {
|
switch (ar->state) {
|
||||||
case ATH10K_STATE_ON:
|
case ATH10K_STATE_ON:
|
||||||
ar->state = ATH10K_STATE_RESTARTING;
|
ar->state = ATH10K_STATE_RESTARTING;
|
||||||
ath10k_hif_stop(ar);
|
ath10k_halt(ar);
|
||||||
ath10k_scan_finish(ar);
|
ath10k_scan_finish(ar);
|
||||||
ieee80211_restart_hw(ar->hw);
|
ieee80211_restart_hw(ar->hw);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -4449,7 +4449,6 @@ static int ath10k_start(struct ieee80211_hw *hw)
|
|||||||
ar->state = ATH10K_STATE_ON;
|
ar->state = ATH10K_STATE_ON;
|
||||||
break;
|
break;
|
||||||
case ATH10K_STATE_RESTARTING:
|
case ATH10K_STATE_RESTARTING:
|
||||||
ath10k_halt(ar);
|
|
||||||
ar->state = ATH10K_STATE_RESTARTED;
|
ar->state = ATH10K_STATE_RESTARTED;
|
||||||
break;
|
break;
|
||||||
case ATH10K_STATE_ON:
|
case ATH10K_STATE_ON:
|
||||||
|
|||||||
Reference in New Issue
Block a user