From 9e887cba914d15939d06fcd604311cf8f6537860 Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Thu, 3 Dec 2015 09:41:07 -0800 Subject: 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 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 Trybot-Ready: Vincent Palatin Tested-by: Vincent Palatin Commit-Queue: Vincent Palatin --- board/ryu/ec.tasklist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) \ -- cgit v1.2.1