From 46aaeaf632326b11018a58711b9ef50e1126b78a Mon Sep 17 00:00:00 2001 From: Kapil Bhatt Date: Tue, 11 Feb 2025 18:39:06 +0530 Subject: [PATCH] drivers: nrf_wifi: Disable mgmt buffer offload During raw scan, Need to disable NRF_WIFI_MGMT_BUFF_OFFLOAD. UMAC will send beacon and probe responses directly to the host, regardless of the mgmt_buff_offload flag's value. Host needs to resubmit buffers to LMAC. Signed-off-by: Kapil Bhatt --- drivers/wifi/nrf_wifi/Kconfig.nrfwifi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/wifi/nrf_wifi/Kconfig.nrfwifi b/drivers/wifi/nrf_wifi/Kconfig.nrfwifi index 4263f7d15415..dc9372c7416e 100644 --- a/drivers/wifi/nrf_wifi/Kconfig.nrfwifi +++ b/drivers/wifi/nrf_wifi/Kconfig.nrfwifi @@ -747,6 +747,8 @@ endchoice config NRF_WIFI_MGMT_BUFF_OFFLOAD bool "Management buffer offload" + # Raw scan results need host based refilling + depends on !WIFI_MGMT_RAW_SCAN_RESULTS default y help This option offloads the refilling of management buffers to the UMAC, saving the host