On Wed, 2010-11-10 at 16:54 +0100, Frederic Weisbecker wrote:
Not for some time, immediately, have the tick track if it was useful, if
it was not, have it stop itself, like:
tick()
{
int stop = 1;
if (nr_running > 1)
stop = 0;
if(rcu_needs_cpu())
stop = 0;
...
if (stop)
enter_nohz_mode();
}
--