Re: [RFC] (How to) Let idle CPUs sleep

From: Rusty Russell
Date: Sat May 07 2005 - 22:51:55 EST


On Sat, 2005-05-07 at 23:57 +0530, Srivatsa Vaddagiri wrote:
> Two solutions have been proposed so far:
>
> A. As per Nick's suggestion, impose a max limit (say some 100 ms or
> say a second, Nick?) on how long a idle CPU can avoid taking
> local-timer ticks. As a result, the load imbalance could exist only
> for this max duration, after which the sleeping CPU will wake up
> and balance itself. If there is no imbalance, it can go and sleep
> again for the max duration.
>
> For ex, lets say a idle CPU found that it doesn't have any near timer
> for the next 1 minute. Instead of letting it sleep for 1 minute in
> a single stretch, we let it sleep in bursts of 100 msec (or whatever
> is the max. duration chosen). This still is better than having
> the idle CPU take HZ ticks a second.
>
> As a special case, when all the CPUs of an image go idle, we
> could consider completely shutting off local timer ticks
> across all CPUs (till the next non-timer interrupt).
>
>
> B. Don't impose any max limit on how long a idle CPU can sleep.
> Here we let the idle CPU sleep as long as it wants. It is
> woken up by a "busy" CPU when it detects an imbalance. The
> busy CPU acts as a watchdog here. If there are no such
> busy CPUs, then it means that nobody will acts as watchdogs
> and idle CPUs sleep as long as they want. A possible watchdog
> implementation has been discussed at:
>
> http://marc.theaimsgroup.com/?l=linux-kernel&m=111287808905764&w=2

My preference would be the second: fix the scheduler so it doesn't rely
on regular polling. However, as long as the UP case runs with no timer
interrupts when idle, many people will be happy (eg. most embedded).

Rusty.
--
A bad analogy is like a leaky screwdriver -- Richard Braakman

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/