summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJett Rink <jettrink@chromium.org>2018-12-21 14:54:44 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2019-01-07 06:52:58 +0000
commit543771b1ee5d8f2877f880daad1bd6ae44310b80 (patch)
tree027a2b61b3d00d112549d2e5b5dd78ce79247d86
parent53a323199c39af5b2f45ba8efd95887b0e38b8c2 (diff)
downloadchrome-ec-543771b1ee5d8f2877f880daad1bd6ae44310b80.tar.gz
ish: remove unused code
The variable need_resched_or_profiling wasn't being used in a way that was meaningful and added unnecessary complexity. Removing. BRANCH=none BUG=b:121343650 TEST=build with profiling disabled and task switching on aracarda still works Change-Id: Ic54bcb0f3c6b66aecbb8cf806ead5dd3695bdb35 Signed-off-by: Jett Rink <jettrink@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1389057 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Reviewed-by: Caveh Jalali <caveh@google.com> (cherry picked from commit 08803b0ac80815332b07a5d8ecf3aa3c830665b8) Reviewed-on: https://chromium-review.googlesource.com/c/1397170 Commit-Queue: Caveh Jalali <caveh@google.com> Tested-by: Caveh Jalali <caveh@google.com>
-rw-r--r--core/minute-ia/task.c45
-rw-r--r--core/minute-ia/task_defs.h2
2 files changed, 2 insertions, 45 deletions
diff --git a/core/minute-ia/task.c b/core/minute-ia/task.c
index cec812af3e..16bb724c2d 100644
--- a/core/minute-ia/task.c
+++ b/core/minute-ia/task.c
@@ -122,19 +122,6 @@ uint8_t task_stacks[0
task_ *current_task, *next_task;
-/*
- * Should IRQs chain to switch_handler()? This should be set if either of the
- * following is true:
- *
- * 1) Task scheduling has started, and task profiling is enabled. Task
- * profiling does its tracking in switch_handler().
- *
- * 2) An event was set by an interrupt; this could result in a higher-priority
- * task unblocking. After checking for a task switch, switch_handler() will
- * clear the flag (unless profiling is also enabled; then the flag remains
- * set).
- */
-static int need_resched_or_profiling;
/*
* Bitmap of all tasks ready to be run.
@@ -257,12 +244,6 @@ uint32_t switch_handler(int desched, task_id_t resched)
*/
current->runtime += (exc_start_time - exc_end_time);
exc_end_time = t;
-#else
- /*
- * Don't chain here from interrupts until the next time an interrupt
- * sets an event.
- */
- need_resched_or_profiling = 0;
#endif
/* Nothing to do */
@@ -309,30 +290,10 @@ void __keep task_start_irq_handler(void *excep_return)
if (irq < ARRAY_SIZE(irq_dist))
irq_dist[irq]++;
- /*
- * Continue iff a rescheduling event happened or profiling is active,
- * and we are not called from another exception (this must match the
- * logic for when we chain to svc_handler() below).
- */
- if (!need_resched_or_profiling || (((uint32_t)excep_return & 0xf) == 1))
- return;
-
exc_start_time = t;
}
#endif
-void __keep task_resched_if_needed(void *excep_return)
-{
- /*
- * Continue iff a rescheduling event happened or profiling is active,
- * and we are not called from another exception.
- */
- if (!need_resched_or_profiling || (((uint32_t)excep_return & 0xf) == 1))
- return;
-
- switch_handler(0, 0);
-}
-
static uint32_t __wait_evt(int timeout_us, task_id_t resched)
{
task_ *tsk = current_task;
@@ -382,10 +343,6 @@ uint32_t task_set_event(task_id_t tskid, uint32_t event, int wait)
if (in_interrupt_context()) {
/* The receiver might run again */
atomic_or(&tasks_ready, 1 << tskid);
-#ifndef CONFIG_TASK_PROFILING
- if (start_called)
- need_resched_or_profiling = 1;
-#endif
} else {
if (wait)
return __wait_evt(-1, tskid);
@@ -673,5 +630,5 @@ int task_start(void)
#ifdef CONFIG_TASK_PROFILING
task_start_time = exc_end_time = get_time().val;
#endif
- return __task_start(&need_resched_or_profiling);
+ return __task_start();
}
diff --git a/core/minute-ia/task_defs.h b/core/minute-ia/task_defs.h
index db78e1865a..5dd44b0a66 100644
--- a/core/minute-ia/task_defs.h
+++ b/core/minute-ia/task_defs.h
@@ -26,7 +26,7 @@ typedef union {
};
} task_;
-int __task_start(int *task_stack_ready);
+int __task_start(void);
void __switchto(void);
/* Only the IF bit is set so tasks start with interrupts enabled. */