Browse Source

qcacmn: Fix max OL_TXRX_NUM_LOCAL_PEER_IDS for concurrency

Change max OL_TXRX_NUM_LOCAL_PEER_IDS to 35 to take care of
STA + SAP + P2P concurrency.

Each AP will occupy one ID, so it will occupy 2 IDs for AP-AP mode.
Clients will be assigned max 32 IDs and STA(associated)/
P2P DEV(self-PEER) will get one ID.

Change-Id: I4d3e74c550e34b1d3417825245990655ead87b28
CRs-Fixed: 2356032
Alok Kumar 6 years ago
parent
commit
c1ec49e685
1 changed files with 6 additions and 1 deletions
  1. 6 1
      dp/inc/cdp_txrx_cmn_struct.h

+ 6 - 1
dp/inc/cdp_txrx_cmn_struct.h

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