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

Commit 35873380 authored by Alok Kumar's avatar Alok Kumar
Browse files

qcacld-3.0: 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: I0c1afe048933fde199f17584f02074121ba7004f
CRs-Fixed: 2280959
parent 3c67d964
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -374,9 +374,10 @@ struct ol_tx_sched_t;
#ifndef OL_TXRX_NUM_LOCAL_PEER_IDS
/*
 * Each AP will occupy one ID, so it will occupy two IDs for AP-AP mode.
 * And the remainder IDs will be assigned to other 32 clients.
 * Clients will be assigned max 32 IDs.
 * STA(associated)/P2P DEV (self-PEER) will get one ID.
 */
#define OL_TXRX_NUM_LOCAL_PEER_IDS (2 + 32)
#define OL_TXRX_NUM_LOCAL_PEER_IDS (32 + 1 + 1 + 1)
#endif

#ifndef ol_txrx_local_peer_id_t