From ada0cc90a4361556f81e83be0485224979ceb956 Mon Sep 17 00:00:00 2001 From: Alec Berg Date: Fri, 13 Feb 2015 15:08:13 -0800 Subject: [PATCH] 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 Reviewed-on: https://chromium-review.googlesource.com/249920 Reviewed-by: Shawn N --- board/samus/ec.tasklist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) \