Explorar el Código

qcacmn: Kill bh execution contexts before cleaning up the hif

The interrupts are being freed, but the execution contexts are not
guaranteed to be stopped.  Ensure the execution contexts are stopped
to prevent race conditions between the cleanup and normal execution.

Change-Id: I77f2e0fb7073dbb3337e1cbbb6ed09295c7ea23e
CRs-Fixed: 2030393
Houston Hoffman hace 8 años
padre
commit
7622cd32b0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      hif/src/ce/ce_main.c

+ 1 - 1
hif/src/ce/ce_main.c

@@ -2114,7 +2114,7 @@ void hif_ce_stop(struct hif_softc *scn)
 	 * before cleaning up any memory, ensure irq &
 	 * bottom half contexts will not be re-entered
 	 */
-	hif_nointrs(scn);
+	hif_disable_isr(&scn->osc);
 	hif_destroy_oom_work(scn);
 	scn->hif_init_done = false;