Skip to content

Commit 8f28ba5

Browse files
krish2718rlubos
authored andcommitted
drivers: wifi: Fix missing L2 header in max MSDU calculation
MTU doesn't include any L2 overhead, so, we need to add Ethernet header len for maximum frame size that we can received from the networking stack. Fixes SHEL-2214. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
1 parent a2dbbfd commit 8f28ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/wifi/nrf700x/src/fmac_main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct nrf_wifi_drv_priv_zep rpu_drv_priv_zep;
4949
#define MAX_RX_QUEUES 3
5050

5151
#define MAX_TX_FRAME_SIZE \
52-
(CONFIG_NRF_WIFI_IFACE_MTU + TX_BUF_HEADROOM)
52+
(CONFIG_NRF_WIFI_IFACE_MTU + NRF_WIFI_FMAC_ETH_HDR_LEN + TX_BUF_HEADROOM)
5353
#define TOTAL_TX_SIZE \
5454
(CONFIG_NRF700X_MAX_TX_TOKENS * CONFIG_NRF700X_TX_MAX_DATA_SIZE)
5555
#define TOTAL_RX_SIZE \

0 commit comments

Comments
 (0)