From 9a2afe9f78f04bce8e74aa0d04be1623d14e899e Mon Sep 17 00:00:00 2001 From: Vic Yang Date: Tue, 14 Oct 2014 16:05:57 -0700 Subject: ryu: plankton: Increase PD task stack size The PD task is using more space in the stack and I'm seeing frequent stack overflow on Plankton. On Samus, we already increased the stack size. Let's also increase this on Ryu and Plankton. BUG=None TEST=make buildall BRANCH=None Change-Id: I468985303b7fd38455dd1fed9db54544581c49cf Signed-off-by: Vic Yang Reviewed-on: https://chromium-review.googlesource.com/223368 Reviewed-by: Alec Berg Reviewed-by: Vincent Palatin --- board/plankton/ec.tasklist | 2 +- board/ryu/ec.tasklist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/plankton/ec.tasklist b/board/plankton/ec.tasklist index e9c8c1cc1f..d31352893c 100644 --- a/board/plankton/ec.tasklist +++ b/board/plankton/ec.tasklist @@ -19,4 +19,4 @@ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \ - TASK_ALWAYS(PD, pd_task, NULL, TASK_STACK_SIZE) + TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE) diff --git a/board/ryu/ec.tasklist b/board/ryu/ec.tasklist index f0283133eb..4e99996aee 100644 --- a/board/ryu/ec.tasklist +++ b/board/ryu/ec.tasklist @@ -22,4 +22,4 @@ TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \ TASK_NOTEST(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \ TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \ - TASK_ALWAYS(PD, pd_task, NULL, TASK_STACK_SIZE) + TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE) -- cgit v1.2.1