Ver Fonte

qcacld-3.0: set sap qdf_event event after channel switch

Some SAP channel switch requestor will wait for channel switch
completion. Set sap qdf_event after sap hdd callback recevies
eSAP_CHANNEL_CHANGE_RESP.

Change-Id: I15e0733ac2bef6af55e02ff18f94cc2c86eb9811
CRs-Fixed: 2905918
Liangwei Dong há 4 anos atrás
pai
commit
1b0efa221e
1 ficheiros alterados com 4 adições e 1 exclusões
  1. 4 1
      core/hdd/src/wlan_hdd_hostapd.c

+ 4 - 1
core/hdd/src/wlan_hdd_hostapd.c

@@ -2712,7 +2712,10 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
 			hdd_dcs_hostapd_set_chan(
 				hdd_ctx, adapter->vdev_id,
 				adapter->session.ap.operating_chan_freq);
-
+		qdf_status = qdf_event_set(&hostapd_state->qdf_event);
+		if (!QDF_IS_STATUS_SUCCESS(qdf_status))
+			hdd_err("qdf_event_set failed! status: %d",
+				qdf_status);
 		return hdd_hostapd_chan_change(adapter, sap_event);
 	default:
 		hdd_debug("SAP message is not handled");