From e2bf746fe273d99b7293f75b4206e5ec2ffe8841 Mon Sep 17 00:00:00 2001 From: Chaitanya Tata Date: Mon, 10 Feb 2025 21:08:37 +0530 Subject: [PATCH] modules: hostap: Fix the SoF in iface_wq In case interface is UP, the interface is added to WPA supplicant in the iface_wq itself and the max stack size is 4264, so, increase the stack size of the iface_wq. If the interface is added via net_mgmt thread then it works fine. Signed-off-by: Chaitanya Tata --- modules/hostap/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hostap/Kconfig b/modules/hostap/Kconfig index 317fcb3e0f8..eef7d9391ab 100644 --- a/modules/hostap/Kconfig +++ b/modules/hostap/Kconfig @@ -35,7 +35,7 @@ config WIFI_NM_WPA_SUPPLICANT_THREAD_STACK_SIZE config WIFI_NM_WPA_SUPPLICANT_WQ_STACK_SIZE int "Stack size for wpa_supplicant iface workqueue" - default 4096 + default 4400 config WIFI_NM_WPA_SUPPLICANT_WQ_PRIO int "Thread priority of wpa_supplicant iface workqueue"