summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Yilun Lin <yllin@chromium.org>2019-12-06 13:42:54 +0800
committerCommit Bot <commit-bot@chromium.org>2019-12-06 10:07:49 +0000
commit25dbfd93433d61616d8a2da4dc92806d2486cb9e (patch)
treebed8d321bf16ad0f74753eebeb468437101032c8
parent93ff538d4c637860e19130c8d47f26081eb8a35c (diff)
downloadchrome-ec-25dbfd93433d61616d8a2da4dc92806d2486cb9e.tar.gz
kukui: enlarge stack for hook_task
We are seeing a stack overflow from hook_task. Enlarge it to prevent from crashing. TEST=not seeing a EC crash BUG=none BRANCH=kukui Change-Id: I1c574ecd577528dda57c2771bd4e67b3aa557b75 Signed-off-by: Eric Yilun Lin <yllin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1954833 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
-rw-r--r--board/kukui/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kukui/ec.tasklist b/board/kukui/ec.tasklist
index 2306cc57e1..d69db35764 100644
--- a/board/kukui/ec.tasklist
+++ b/board/kukui/ec.tasklist
@@ -7,7 +7,7 @@
* See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TASK_LIST \
- TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG, usb_charger_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \