Skip to content

Commit

Permalink
um: Use generic idle loop
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Weinberger <richard@nod.at>
Cc: user-mode-linux-devel@lists.sourceforge.net
Link: http://lkml.kernel.org/r/1366149209-24787-1-git-send-email-richard@nod.at
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Richard Weinberger authored and Thomas Gleixner committed Apr 17, 2013
1 parent 2412aa1 commit 8198c16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 23 deletions.
1 change: 1 addition & 0 deletions arch/um/Kconfig.common
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ config UML
select GENERIC_CPU_DEVICES
select GENERIC_IO
select GENERIC_CLOCKEVENTS
select GENERIC_IDLE_LOOP
select TTY # Needed for line.c

config MMU
Expand Down
27 changes: 4 additions & 23 deletions arch/um/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,33 +210,14 @@ void initial_thread_cb(void (*proc)(void *), void *arg)
kmalloc_ok = save_kmalloc_ok;
}

void default_idle(void)
void arch_cpu_idle(void)
{
unsigned long long nsecs;

while (1) {
/* endless idle loop with no priority at all */

/*
* although we are an idle CPU, we do not want to
* get into the scheduler unnecessarily.
*/
if (need_resched())
schedule();

tick_nohz_idle_enter();
rcu_idle_enter();
nsecs = disable_timer();
idle_sleep(nsecs);
rcu_idle_exit();
tick_nohz_idle_exit();
}
}

void cpu_idle(void)
{
cpu_tasks[current_thread_info()->cpu].pid = os_getpid();
default_idle();
nsecs = disable_timer();
idle_sleep(nsecs);
local_irq_enable();
}

int __cant_sleep(void) {
Expand Down

0 comments on commit 8198c16

Please sign in to comment.