Forráskód Böngészése

qcacld-3.0: Add check to drop ADDBA frame during disconnection

Currently, host driver is sending peer delete for VDEV 1
to the fw during disconnection and receiving BA frame on
VDEV 0 , resulting in sending MGMT frame to firmware leading
to crash, As anchor link migration will not happen during disconnection.

This addresses the issue of firmware crash caused by inadvertent
transmission of management frame during disconnection.

CRs-Fixed: 3685886
Change-Id: I336cd2783f8071cd9426a1585d7e1d0aa189a242
Aasir Rasheed 1 éve
szülő
commit
89aa6ff23a
1 módosított fájl, 7 hozzáadás és 1 törlés
  1. 7 1
      core/mac/src/pe/lim/lim_process_action_frame.c

+ 7 - 1
core/mac/src/pe/lim/lim_process_action_frame.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2024 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
@@ -56,6 +56,7 @@
 #include "son_api.h"
 #include "wlan_t2lm_api.h"
 #include "wlan_epcs_api.h"
+#include <wlan_mlo_mgr_sta.h>
 #include "wlan_mlo_mgr_public_structs.h"
 
 #define SA_QUERY_REQ_MIN_LEN \
@@ -1558,6 +1559,11 @@ static void lim_process_addba_req(struct mac_context *mac_ctx, uint8_t *rx_pkt_i
 	bool eht_cap = false;
 	uint8_t extd_buff_size = 0;
 
+	if (mlo_is_any_link_disconnecting(session->vdev)) {
+		pe_err("Ignore ADDBA, vdev is in not in conncted state");
+		return;
+	}
+
 	mac_hdr = WMA_GET_RX_MAC_HEADER(rx_pkt_info);
 	body_ptr = WMA_GET_RX_MPDU_DATA(rx_pkt_info);
 	frame_len = WMA_GET_RX_PAYLOAD_LEN(rx_pkt_info);