Hi Martin, Today's linux-next merge of the cputime tree got a conflict in kernel/time/tick-sched.c between commit 26105f6432b27212ad5563c4d32826f7b778f0b8 ("tick: cleanup idle checks") from the timers tree and commit 84dd5d04573c132ff107cf9d5d311d93c6ac6b61 ("[PATCH] idle cputime accounting") from the cputime tree. Just context. I fixed it up (see below) and can carry it for now. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc kernel/time/tick-sched.c index 35a775e,1bcbca6..0000000 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@@ -410,11 -412,13 +410,13 @@@ void tick_nohz_restart_sched_tick(void { int cpu = smp_processor_id(); struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); + #ifndef CONFIG_VIRT_CPU_ACCOUNTING unsigned long ticks; + #endif - ktime_t now; + ktime_t now = ktime_get(); local_irq_disable(); - tick_nohz_stop_idle(cpu); + tick_nohz_stop_idle(ts, now); if (!ts->inidle || !ts->tick_stopped) { ts->inidle = 0; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html