Kaynağa Gözat

qcacld-3.0: Drop Probe Requests on Scan Queue if queue is full

Drop Probe request frames before posting on Scan Queue if the queue
is already having too many beacon/probe frames to process.

Change-Id: Iaad3d3ea0b50edf7ae7a9c5437ac5c210fe6a97f
CRs-Fixed: 2298581
Vignesh Viswanathan 6 yıl önce
ebeveyn
işleme
a03a58e9f5
1 değiştirilmiş dosya ile 11 ekleme ve 0 silme
  1. 11 0
      core/mac/src/pe/lim/lim_api.c

+ 11 - 0
core/mac/src/pe/lim/lim_api.c

@@ -68,6 +68,7 @@
 #include "wlan_objmgr_psoc_obj.h"
 #include "os_if_nan.h"
 #include <wlan_scan_ucfg_api.h>
+#include <wlan_scan_public_structs.h>
 #include <wlan_p2p_ucfg_api.h>
 #include "wlan_utility.h"
 #include <wlan_tdls_cfg_api.h>
@@ -1259,6 +1260,16 @@ static QDF_STATUS pe_handle_probe_req_frames(tpAniSirGlobal mac_ctx,
 {
 	QDF_STATUS status;
 	struct scheduler_msg msg = {0};
+	uint32_t scan_queue_size = 0;
+
+	/* Check if the probe request frame can be posted in the scan queue */
+	status = scheduler_get_queue_size(QDF_MODULE_ID_SCAN, &scan_queue_size);
+	if (!QDF_IS_STATUS_SUCCESS(status) ||
+	    scan_queue_size > MAX_BCN_PROBE_IN_SCAN_QUEUE) {
+		pe_debug_rl("Dropping probe req frame, queue size %d",
+			    scan_queue_size);
+		return QDF_STATUS_E_FAILURE;
+	}
 
 	/* Forward to MAC via mesg = SIR_BB_XPORT_MGMT_MSG */
 	msg.type = SIR_BB_XPORT_MGMT_MSG;