From 85e55d12d648618a18397fb2e59de2daac2b00d0 Mon Sep 17 00:00:00 2001 From: gaurank kathpalia Date: Tue, 28 Aug 2018 19:46:50 +0530 Subject: [PATCH] qcacmn: Add src, and dst id support in PKTLOG(WMA) In the scheduler_post_message, src_id is now added to know the source module of the msg. the present scheduler doesn't know about the same which is scheduler_post_msg Replace the scheduler_post_msg with scheduler_post_message Change-Id: I166f4c943b9a21749c53ed19101b0ed0defd8491 CRs-Fixed: 2306013 --- utils/pktlog/pktlog_ac.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/pktlog/pktlog_ac.c b/utils/pktlog/pktlog_ac.c index 97034c368e..c95ede97b1 100644 --- a/utils/pktlog/pktlog_ac.c +++ b/utils/pktlog/pktlog_ac.c @@ -131,7 +131,9 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types, msg.bodyptr = param; msg.bodyval = 0; - status = scheduler_post_msg(QDF_MODULE_ID_WMA, &msg); + status = scheduler_post_message(QDF_MODULE_ID_WMA, + QDF_MODULE_ID_WMA, + QDF_MODULE_ID_WMA, &msg); if (status != QDF_STATUS_SUCCESS) { qdf_mem_free(param);