summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2015-12-03 09:41:07 -0800
committerChromeOS bot <3su6n15k.default@developer.gserviceaccount.com>2015-12-04 14:46:15 +0000
commit9e887cba914d15939d06fcd604311cf8f6537860 (patch)
tree993be8c0144aa590441df652446e9412fe319313
parent087959dca16294bd4c8dca4fd9e6cd26762324d5 (diff)
downloadchrome-ec-9e887cba914d15939d06fcd604311cf8f6537860.tar.gz
ryu: increase CHARGER task stack size
We got one report from the field of an EC panic due to a stack overflow in the CHARGER task. I was not able to reproduce it or find the code path, but as we have free RAM, we can try to increase it a bit. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=smaug BUG=b:25977066 TEST=run 'taskinfo' on Smaug and see '4 CHARGER 00000000 1.103620 408/640' Change-Id: I443dca4cb2247de5c01b22f30f1e25965376588d Reviewed-on: https://chromium-review.googlesource.com/315702 Reviewed-by: Alec Berg <alecaberg@chromium.org> Trybot-Ready: Vincent Palatin <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--board/ryu/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ryu/ec.tasklist b/board/ryu/ec.tasklist
index d0c715452f..10ebb9061a 100644
--- a/board/ryu/ec.tasklist
+++ b/board/ryu/ec.tasklist
@@ -20,7 +20,7 @@
TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG, usb_charger_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(LIGHTBAR, lightbar_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(HOSTCMD, host_command_task, NULL, VENTI_TASK_STACK_SIZE) \