소스 검색

qcacld-3.0: Refactor wlan_hdd_cleanup_actionframe() API

To cleanup the P2P action frame for a specific VDEV use
link info pointer to get VDEV reference instead of adapter.
Existing callers are changed to deflink.

Change-Id: I22bfe9170988f58456622ca7da321a4447b8234e
CRs-Fixed: 3462371
Vinod Kumar Pirla 2 년 전
부모
커밋
d4e9094d48
4개의 변경된 파일7개의 추가작업 그리고 11개의 파일을 삭제
  1. 3 2
      core/hdd/inc/wlan_hdd_p2p.h
  2. 1 1
      core/hdd/src/wlan_hdd_hostapd.c
  3. 1 1
      core/hdd/src/wlan_hdd_main.c
  4. 2 7
      core/hdd/src/wlan_hdd_p2p.c

+ 3 - 2
core/hdd/inc/wlan_hdd_p2p.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2012-2019, 2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -194,11 +195,11 @@ void wlan_hdd_set_mcc_latency(struct hdd_adapter *adapter, int set_value);
 
 /**
  * wlan_hdd_cleanup_actionframe() - Cleanup action frame
- * @adapter: Pointer to HDD adapter
+ * @link_info: pointer to link_info struct in adapter
  *
  * This function cleans up action frame.
  *
  * Return: None
  */
-void wlan_hdd_cleanup_actionframe(struct hdd_adapter *adapter);
+void wlan_hdd_cleanup_actionframe(struct wlan_hdd_link_info *link_info);
 #endif /* __P2P_H */

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

@@ -7091,7 +7091,7 @@ static int __wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
 				     WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
 				     WLAN_CONTROL_PATH);
 
-	wlan_hdd_cleanup_actionframe(adapter);
+	wlan_hdd_cleanup_actionframe(adapter->deflink);
 	wlan_hdd_cleanup_remain_on_channel_ctx(adapter);
 	mutex_lock(&hdd_ctx->sap_lock);
 	if (test_bit(SOFTAP_BSS_STARTED, &adapter->deflink->link_flags)) {

+ 1 - 1
core/hdd/src/wlan_hdd_main.c

@@ -8623,7 +8623,7 @@ QDF_STATUS hdd_stop_adapter_ext(struct hdd_context *hdd_ctx,
 			ucfg_disable_nan_discovery(hdd_ctx->psoc, NULL, 0);
 
 		wlan_hdd_scan_abort(adapter);
-		wlan_hdd_cleanup_actionframe(adapter);
+		wlan_hdd_cleanup_actionframe(adapter->deflink);
 		wlan_hdd_cleanup_remain_on_channel_ctx(adapter);
 		status = wlan_hdd_flush_pmksa_cache(adapter->deflink);
 

+ 2 - 7
core/hdd/src/wlan_hdd_p2p.c

@@ -105,16 +105,11 @@ void wlan_hdd_cleanup_remain_on_channel_ctx(struct hdd_adapter *adapter)
 	hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_P2P_ID);
 }
 
-void wlan_hdd_cleanup_actionframe(struct hdd_adapter *adapter)
+void wlan_hdd_cleanup_actionframe(struct wlan_hdd_link_info *link_info)
 {
 	struct wlan_objmgr_vdev *vdev;
 
-	if (!adapter) {
-		hdd_err("null adapter");
-		return;
-	}
-
-	vdev = hdd_objmgr_get_vdev_by_user(adapter->deflink, WLAN_OSIF_P2P_ID);
+	vdev = hdd_objmgr_get_vdev_by_user(link_info, WLAN_OSIF_P2P_ID);
 	if (!vdev)
 		return;
 	ucfg_p2p_cleanup_tx_by_vdev(vdev);