Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4376d0e0 authored by CNSS_WLAN Service's avatar CNSS_WLAN Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "qcacmn: Fix max OL_TXRX_NUM_LOCAL_PEER_IDS for concurrency" into wlan-cmn.driver.lnx.2.0.3

parents 4fb4f5eb 43a225e8
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -40,7 +40,12 @@
#include <cdp_txrx_handle.h>

#ifndef OL_TXRX_NUM_LOCAL_PEER_IDS
#define OL_TXRX_NUM_LOCAL_PEER_IDS 33   /* default */
/*
 * Each AP will occupy one ID, so it will occupy two IDs for AP-AP mode.
 * Clients will be assigned max 32 IDs.
 * STA(associated)/P2P DEV(self-PEER) will get one ID.
 */
#define OL_TXRX_NUM_LOCAL_PEER_IDS (32 + 1 + 1 + 1)
#endif

#define CDP_BA_256_BIT_MAP_SIZE_DWORDS 8