|
@@ -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);
|