From bbb4355cf7202057e1c6e5b74e997af0cda57ac5 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 16 Mar 2020 13:49:24 +0200 Subject: [PATCH] samples: sockets: big_http_download: Increase stack size by 128 bytes Without it, the sample crashes for qemu_x86 with: [00:00:03.080,000] os: Page fault at address 0x7275632f (error code 0x10) [00:00:03.080,000] os: Linear address not present in page tables [00:00:03.080,000] os: PDPTE: Non-present ... Increase by reasonable, but small amount, to keep watching stack usage growth trends in Zephyr. Signed-off-by: Paul Sokolovsky --- samples/net/sockets/big_http_download/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/net/sockets/big_http_download/prj.conf b/samples/net/sockets/big_http_download/prj.conf index 2c155f7c771eed..3c4b11859ef9a6 100644 --- a/samples/net/sockets/big_http_download/prj.conf +++ b/samples/net/sockets/big_http_download/prj.conf @@ -2,7 +2,7 @@ CONFIG_NEWLIB_LIBC=y CONFIG_MBEDTLS=y CONFIG_MBEDTLS_ENABLE_HEAP=y -CONFIG_MAIN_STACK_SIZE=2048 +CONFIG_MAIN_STACK_SIZE=2176 # Networking config CONFIG_NETWORKING=y