Skip to content

Commit 7d7d1d8

Browse files
kapbhrlubos
authored andcommitted
[nrf fromtree] drivers: wifi: Set reorder buffer size to half of RX buffers
For different values of reorder buffer throughputs are consistent, Setting reorder buffer size to half of the RX buffers configured. Signed-off-by: Kapil Bhatt <[email protected]> (cherry picked from commit 9f7307f)
1 parent bf0aa6a commit 7d7d1d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/wifi/nrf_wifi/src/fmac_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ BUILD_ASSERT(CONFIG_NRF70_TX_MAX_DATA_SIZE >= MAX_TX_FRAME_SIZE,
7676
static const unsigned char aggregation = 1;
7777
static const unsigned char max_num_tx_agg_sessions = 4;
7878
static const unsigned char max_num_rx_agg_sessions = 8;
79-
static const unsigned char reorder_buf_size = 16;
79+
static const unsigned char reorder_buf_size = CONFIG_NRF70_RX_NUM_BUFS / 2;
8080
static const unsigned char max_rxampdu_size = MAX_RX_AMPDU_SIZE_64KB;
8181

8282
static const unsigned char max_tx_aggregation = CONFIG_NRF70_MAX_TX_AGGREGATION;

0 commit comments

Comments
 (0)