diff options
| author | Vulupala Shashank Reddy <vulupa@codeaurora.org> | 2019-07-17 15:39:55 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-07-17 22:57:53 -0700 |
| commit | b1ccd948ea7d29eedfbabfeb5b9c3d8716f05c0f (patch) | |
| tree | 241e48276568f1b9516b32124d2e0fea3a9016ee | |
| parent | fbdc3fd6e3dbb6d2e6ca35a48045421534d3a2e5 (diff) | |
qcacld-3.0: Change context for processing of Mgmt TX offload packets
Currently, Mgmt offloaded Rx and Tx packets are captured in out of sync
on mon Interface as Rx Offload event handler is running in MC thread
context and Tx Offload event handler is running in worker thread context.
Change for processing of Mgmt Tx offload event handler from MC thread
context to worker thread context.
Change-Id: Ifaf1c4975a6bb3580d11cdd43a5cf5738638bd76
CRs-Fixed: 2491700
| -rw-r--r-- | core/wma/src/wma_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/wma/src/wma_main.c b/core/wma/src/wma_main.c index a792a91b39f1..ac86d06713c8 100644 --- a/core/wma/src/wma_main.c +++ b/core/wma/src/wma_main.c @@ -5298,7 +5298,7 @@ int wma_rx_service_ready_event(void *handle, uint8_t *cmd_param_info, wma_handle->wmi_handle, WMI_VDEV_MGMT_OFFLOAD_EVENTID, wma_mgmt_offload_data_event_handler, - WMA_RX_SERIALIZER_CTX); + WMA_RX_WORK_CTX); if (status) { WMA_LOGE("Failed to register MGMT offload handler"); return -EINVAL; |
