Browse Source

qcacmn: Add src, and dst id support in TARGET-IF

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: I24a94a898fc1f8c3c1e2f1faca0ef51aacdb238c
CRs-Fixed: 2306016
gaurank kathpalia 6 years ago
parent
commit
5f5b7039bf
1 changed files with 21 additions and 7 deletions
  1. 21 7
      target_if/nan/src/target_if_nan.c

+ 21 - 7
target_if/nan/src/target_if_nan.c

@@ -219,7 +219,9 @@ static int target_if_ndp_initiator_rsp_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_INITIATOR_RSP sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -268,7 +270,9 @@ static int target_if_ndp_ind_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_INDICATION sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -317,7 +321,9 @@ static int target_if_ndp_confirm_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_CONFIRM sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -415,7 +421,9 @@ static int target_if_ndp_responder_rsp_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_INITIATOR_RSP sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -513,7 +521,9 @@ static int target_if_ndp_end_rsp_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_END_RSP sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -555,7 +565,9 @@ static int target_if_ndp_end_ind_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_END_IND sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);
@@ -604,7 +616,9 @@ static int target_if_ndp_sch_update_handler(ol_scn_t scn, uint8_t *data,
 	msg.callback = target_if_nan_event_dispatcher;
 	msg.flush_callback = target_if_nan_event_flush_cb;
 	target_if_debug("NDP_SCHEDULE_UPDATE sent: %d", msg.type);
-	status = scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &msg);
+	status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF,
+					QDF_MODULE_ID_TARGET_IF, &msg);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		target_if_err("failed to post msg, status: %d", status);
 		target_if_nan_event_flush_cb(&msg);