Browse Source

qcacld-3.0: Remove variables about roc

Remove lock, flag and delay work about roc in HDD layer.

Change-Id: I13316995d0754b078433862a29637e9f220aa420
CRs-Fixed: 2130530
Wu Gao 7 years ago
parent
commit
80c5f8a0af

+ 0 - 13
core/hdd/inc/wlan_hdd_main.h

@@ -969,7 +969,6 @@ struct hdd_chan_change_params {
  * Prevent Runtime PM for scan
  */
 struct hdd_runtime_pm_context {
-	qdf_runtime_lock_t roc;
 	qdf_runtime_lock_t dfs;
 };
 
@@ -1187,8 +1186,6 @@ struct hdd_adapter {
 	uint64_t prev_fwd_rx_packets;
 	int connection;
 #endif
-	bool is_roc_inprogress;
-
 #ifdef QCA_LL_LEGACY_TX_FLOW_CONTROL
 	qdf_mc_timer_t tx_flow_control_timer;
 	bool tx_flow_timer_initialized;
@@ -1208,12 +1205,6 @@ struct hdd_adapter {
 	/* variable for temperature in Celsius */
 	int temperature;
 
-	/* Time stamp for last completed RoC request */
-	uint64_t last_roc_ts;
-
-	/* Time stamp for start RoC request */
-	uint64_t start_roc_ts;
-
 #ifdef WLAN_FEATURE_DSRC
 	/* MAC addresses used for OCB interfaces */
 	struct qdf_mac_addr ocb_mac_address[QDF_MAX_CONCURRENCY_PERSONA];
@@ -1652,10 +1643,6 @@ struct hdd_context {
 	/* Time since boot up to extscan start (in micro seconds) */
 	uint64_t ext_scan_start_since_boot;
 	unsigned long g_event_flags;
-	/* RoC request queue and work */
-	struct delayed_work roc_req_work;
-	qdf_spinlock_t hdd_roc_req_q_lock;
-	qdf_list_t hdd_roc_req_q;
 	uint8_t miracast_value;
 
 #ifdef WLAN_NS_OFFLOAD

+ 0 - 7
core/hdd/src/wlan_hdd_assoc.c

@@ -166,15 +166,11 @@ static void
 hdd_conn_set_authenticated(struct hdd_adapter *adapter, uint8_t authState)
 {
 	struct hdd_station_ctx *sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
-	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 
 	/* save the new connection state */
 	hdd_debug("Authenticated state Changed from oldState:%d to State:%d",
 		   sta_ctx->conn_info.uIsAuthenticated, authState);
 	sta_ctx->conn_info.uIsAuthenticated = authState;
-
-	/* Check is pending ROC request or not when auth state changed */
-	schedule_delayed_work(&hdd_ctx->roc_req_work, 0);
 }
 
 /**
@@ -191,7 +187,6 @@ void hdd_conn_set_connection_state(struct hdd_adapter *adapter,
 {
 	struct hdd_station_ctx *hdd_sta_ctx =
 		WLAN_HDD_GET_STATION_CTX_PTR(adapter);
-	struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 
 	/* save the new connection state */
 	hdd_debug("%pS Changed conn state from old:%d to new:%d for dev %s",
@@ -202,8 +197,6 @@ void hdd_conn_set_connection_state(struct hdd_adapter *adapter,
 					 hdd_sta_ctx->conn_info.connState,
 					 conn_state);
 	hdd_sta_ctx->conn_info.connState = conn_state;
-
-	schedule_delayed_work(&hdd_ctx->roc_req_work, 0);
 }
 
 /**

+ 0 - 2
core/hdd/src/wlan_hdd_main.c

@@ -944,7 +944,6 @@ static void hdd_runtime_suspend_context_init(struct hdd_context *hdd_ctx)
 {
 	struct hdd_runtime_pm_context *ctx = &hdd_ctx->runtime_context;
 
-	qdf_runtime_lock_init(&ctx->roc);
 	qdf_runtime_lock_init(&ctx->dfs);
 
 	wlan_scan_runtime_pm_init(hdd_ctx->hdd_pdev);
@@ -960,7 +959,6 @@ static void hdd_runtime_suspend_context_deinit(struct hdd_context *hdd_ctx)
 {
 	struct hdd_runtime_pm_context *ctx = &hdd_ctx->runtime_context;
 
-	qdf_runtime_lock_deinit(&ctx->roc);
 	qdf_runtime_lock_deinit(&ctx->dfs);
 
 	wlan_scan_runtime_pm_deinit(hdd_ctx->hdd_pdev);

+ 0 - 2
core/hdd/src/wlan_hdd_power.c

@@ -1819,8 +1819,6 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
 				return -EOPNOTSUPP;
 			}
 		}
-		if (adapter->is_roc_inprogress)
-			wlan_hdd_cleanup_remain_on_channel_ctx(adapter);
 next_adapter:
 		status = hdd_get_next_adapter(hdd_ctx, pAdapterNode, &pNext);
 		pAdapterNode = pNext;