summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2015-02-13 15:08:13 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-02-14 20:21:30 +0000
commitada0cc90a4361556f81e83be0485224979ceb956 (patch)
treea8003204052e386263a3ce8a4cb763cad44fa862
parent96536de3f4c2b942b5c40ac18a2a42d282f98dbf (diff)
downloadchrome-ec-ada0cc90a4361556f81e83be0485224979ceb956.tar.gz
samus: increase extpower task stack size
Increase extpower task stack size due to occasional stack overflow in extpower task on plugging/unpluggin AC. BUG=chrome-os-partner:36760 BRANCH=samus TEST=load onto samus, connect/disconnect a bunch of times and check high water mark on stack usage: 368/512 Change-Id: I4531176ce6f15356a2267cdecf907a7694567da9 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/249920 Reviewed-by: Shawn N <shawnn@chromium.org>
-rw-r--r--board/samus/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samus/ec.tasklist b/board/samus/ec.tasklist
index 815da6dbb9..c6b974d4cf 100644
--- a/board/samus/ec.tasklist
+++ b/board/samus/ec.tasklist
@@ -21,7 +21,7 @@
TASK_NOTEST(ALS, als_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(LIGHTBAR, lightbar_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(EXTPOWER, extpower_task, NULL, SMALLER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(EXTPOWER, extpower_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \