Sfoglia il codice sorgente

qcacld-3.0: Remove obsolete ANI_SIR_IBSS_PEER_CACHING logic

Code analysis identified dead code protected with the obsolete feature
flag ANI_SIR_IBSS_PEER_CACHING, so remove all logic associated with
that flag.

This is cleanup from a previous patch:
    qcacld-3.0: Cleanup IBSS code from LIM
    (Change-Id Idebb0f55aa27751f1fdd7b4c1fb8124ae29eb382)

Change-Id: I67a6b2b4747a774b5e116f017b7ef1be0fc5b2f7
CRs-Fixed: 3423129
Jeff Johnson 2 anni fa
parent
commit
21925c4a4a

+ 5 - 3
core/mac/src/include/sir_params.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-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
@@ -238,8 +238,10 @@ enum halmsgtype {
 
 	SIR_HAL_SWITCH_CHANNEL_RSP        = (SIR_HAL_ITC_MSG_TYPES_BEGIN + 35),
 	SIR_HAL_PWR_SAVE_CFG              = (SIR_HAL_ITC_MSG_TYPES_BEGIN + 36),
-
-	SIR_HAL_IBSS_STA_ADD              = (SIR_HAL_ITC_MSG_TYPES_BEGIN + 43),
+/*
+ * (SIR_HAL_ITC_MSG_TYPES_BEGIN + 37) to
+ * (SIR_HAL_ITC_MSG_TYPES_BEGIN + 43) are unused
+ */
 	SIR_HAL_TIMER_ADJUST_ADAPTIVE_THRESHOLD_IND =
 					(SIR_HAL_ITC_MSG_TYPES_BEGIN + 44),
 	SIR_HAL_SET_LINK_STATE            = (SIR_HAL_ITC_MSG_TYPES_BEGIN + 45),

+ 0 - 5
core/mac/src/pe/lim/lim_process_message_queue.c

@@ -1631,11 +1631,6 @@ static void lim_process_messages(struct mac_context *mac_ctx,
 	case SIR_LIM_UPDATE_BEACON:
 		lim_update_beacon(mac_ctx);
 		break;
-#ifdef ANI_SIR_IBSS_PEER_CACHING
-	case WMA_IBSS_STA_ADD:
-		lim_ibss_sta_add(mac_ctx, msg->bodyptr);
-		break;
-#endif
 	case SIR_BB_XPORT_MGMT_MSG:
 		/* These messages are from Peer MAC entity. */
 #ifdef WLAN_DEBUG

+ 2 - 3
core/mac/src/sys/legacy/src/utils/src/mac_trace.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-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
@@ -123,7 +123,7 @@ uint8_t *mac_trace_get_lim_sme_state(uint16_t lim_state)
 
 /**
  * mac_trace_get_lim_mlm_state() - Get the lim mlm state
- * @mlmstate: State in numeric form
+ * @mlm_state: State in numeric form
  *
  * This function will return a string equivalent of the state.
  *
@@ -353,7 +353,6 @@ uint8_t *mac_trace_get_wma_msg_string(uint16_t wma_msg)
 		CASE_RETURN_STRING(WMA_P2P_NOA_ATTR_IND);
 		CASE_RETURN_STRING(WMA_PWR_SAVE_CFG);
 
-		CASE_RETURN_STRING(WMA_IBSS_STA_ADD);
 		CASE_RETURN_STRING(WMA_TIMER_ADJUST_ADAPTIVE_THRESHOLD_IND);
 		CASE_RETURN_STRING(WMA_SET_STA_BCASTKEY_RSP);
 		CASE_RETURN_STRING(WMA_ADD_TS_RSP);

+ 1 - 2
core/wma/inc/wma_types.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-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
@@ -154,7 +154,6 @@ enum wmamsgtype {
 	WMA_P2P_NOA_ATTR_IND = SIR_HAL_P2P_NOA_ATTR_IND,
 	WMA_PWR_SAVE_CFG = SIR_HAL_PWR_SAVE_CFG,
 
-	WMA_IBSS_STA_ADD = SIR_HAL_IBSS_STA_ADD,
 	WMA_TIMER_ADJUST_ADAPTIVE_THRESHOLD_IND =
 				SIR_HAL_TIMER_ADJUST_ADAPTIVE_THRESHOLD_IND,
 	WMA_SET_LINK_STATE = SIR_HAL_SET_LINK_STATE,