On Mon, Feb 02, 2015 at 03:35:53PM -0500, Steven Rostedt wrote: > On Mon, 2 Feb 2015 16:24:50 -0200 > Marcelo Tosatti <mtosatti@xxxxxxxxxx> wrote: > > > > > > In any case, if you want the best real-time response for a CPU-bound > > > > > workload on a given CPU, careful use of NO_HZ_FULL would prevent > > > > > that CPU from ever invoking __rcu_process_callbacks() in the first > > > > > place, which would have the beneficial side effect of preventing > > > > > __rcu_process_callbacks() from ever invoking rcu_start_gp(). > > > > > > > > > > Of course, NO_HZ_FULL does have the drawback of increasing the cost > > > > > of user-kernel transitions. > > > > > > > > We need periodic processing of __run_timers to keep timer wheel > > > > processing from falling behind too much. > > > > > > > > See http://www.gossamer-threads.com/lists/linux/kernel/2094151. > > > > > > Hmmm... Do you have the following commits in your build? > > > > > > fff421580f51 timers: Track total number of timers in list > > > d550e81dc0dd timers: Reduce __run_timers() latency for empty list > > > 16d937f88031 timers: Reduce future __run_timers() latency for newly emptied list > > > 18d8cb64c9c0 timers: Reduce future __run_timers() latency for first add to empty list > > > aea369b959be timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 > > > > > > Keeping extraneous processing off of the CPUs running the real-time > > > guest will minimize the number of timers, allowing these commits to > > > do their jobs. > > > > Steven, > > > > The second commit, d550e81dc0dd should be part of -RT, and currently is > > not, because: > > > > -> Any IRQ work item will raise timer softirq. > > -> __run_timers will do a full round of processing, > > ruining latency. > > Was this discussed? Discussed where? The point is this: __run_timers has horrible latency. How to avoid it: configure the system in such a way that no timers (old interface, add_timers) expire on the local CPU. The patches Paul listed above limit the issue allowing you to call raise_softirq(TIMER_SOFTIRQ) without having to go through __run_timers, in the case of no pending timers. > > Even without any timer pending on the timer wheel. > > > > And about NO_HZ_FULL and -RT, is it correct that NO_HZ_FULL > > renders > > > > commit 1a2de830b90e364c3bf95e0000173bffcb65ddb7 > > Author: Steven Rostedt <rostedt@xxxxxxxxxxx> > > Date: Fri Jan 31 12:07:57 2014 -0500 > > > > timer/rt: Always raise the softirq if there's irq_work to be done > > > > Inactive? Should raise softirq from irq_work_queue directly? > > What do you mean raise from irq_work_queue directly? When irq work > needs to be done, that usually is because something happened in a > context that you can not wake up a process (like raise_softirq might > do). The irq_work itself could raise the softirq, but as it takes the > softirq to trigger the irq_work you are stuck in a catch 22 there. Then you rely on the sched timer interrupt to notice there is a pending irq_work item? If you have no sched timer interrupts, then what happens with that irq_work item? > > -- Steve -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html