eea229eb7daa2fb82b6d2d1d1a2f565b4a407f0e

The NOL and CAC timeout callback function is divided into two parts: HardIRQ and workqueue. If NOL/CAC expires, the callback function runs in a HardIRQ context and the rest of the task runs in a workqueue to avoid deadlock issues. Issue: Workqueue tasks run in a low-level context. The task's execution might have been delayed. To fix this, run the "NOL" and "CAC" timer in softirq context. Use QDF_CONTEXT_TASKLET instead of QDF_CONTEXT_HARDWARE as a argument in qdf_hrtimer_init. If it is a "QDF_CONTEXT_TASKLET," the HR timer initialises with softIRQ mode(HRTIMER_MODE_SOFT) and runs in softRQ context when timer expires. Change-Id: I9e23a9dff1a9c4669bb85342b3ffd91bc46ebe95 CRs-Fixed: 3239417
This is CNSS WLAN Host Driver for products starting from iHelium
Description
Languages
C
98.7%
C++
0.9%
Makefile
0.3%
Starlark
0.1%