From 7b2e06b674841e9c9144e6d90451aaee2b5ce943 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 25 Apr 2020 11:04:31 -0600 Subject: [PATCH] Fix errors from DEFAULT_TASK_SIZE change There were several places where default sector and buffer sizes of 2048 were changed to DEFAULT_TASK_STACKSIZE. This is not correct. This was noted by Xiao Xiang. --- examples/mount/Kconfig | 2 +- netutils/libcurl4nx/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/mount/Kconfig b/examples/mount/Kconfig index 499e98d2b..81e80eaa5 100644 --- a/examples/mount/Kconfig +++ b/examples/mount/Kconfig @@ -35,7 +35,7 @@ if !EXAMPLES_MOUNT_BLOCKDEVICE config EXAMPLES_MOUNT_NSECTORS int "RAM disk number of sectors" - default DEFAULT_TASK_STACKSIZE + default 2048 ---help--- The number of "sectors" in the RAM disk used when EXAMPLES_MOUNT_BLOCKDEVICE is not selected. diff --git a/netutils/libcurl4nx/Kconfig b/netutils/libcurl4nx/Kconfig index d6466ffef..173737771 100644 --- a/netutils/libcurl4nx/Kconfig +++ b/netutils/libcurl4nx/Kconfig @@ -44,6 +44,6 @@ config LIBCURL4NX_MINRXBUFLEN config LIBCURL4NX_MAXRXBUFLEN int "Maximum RX buffer size for CURL4NXOPT_BUFFERSIZE" - default DEFAULT_TASK_STACKSIZE + default 2048 endif