summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2014-10-14 16:05:57 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-10-15 18:22:15 +0000
commit9a2afe9f78f04bce8e74aa0d04be1623d14e899e (patch)
tree4fa0673bea556815d6026cdea4c673d18e54cc08
parentc1e908fcac8a91872ff5ec40120bbe65fa41851c (diff)
downloadchrome-ec-9a2afe9f78f04bce8e74aa0d04be1623d14e899e.tar.gz
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 <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/223368 Reviewed-by: Alec Berg <alecaberg@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--board/plankton/ec.tasklist2
-rw-r--r--board/ryu/ec.tasklist2
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)