Hi Thomas & Sebastian, The sched_switch tracer has got a new argument. Fix the latency tracer accordingly. Thanks, -Carsten. Signed-off-by: Carsten Emde <C.Emde@xxxxxxxxx> --- kernel/trace/latency_hist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-4.4.0-rc6-rt1/kernel/trace/latency_hist.c =================================================================== --- linux-4.4.0-rc6-rt1.orig/kernel/trace/latency_hist.c +++ linux-4.4.0-rc6-rt1/kernel/trace/latency_hist.c @@ -117,7 +117,7 @@ static char *wakeup_latency_hist_dir_sha static notrace void probe_wakeup_latency_hist_start(void *v, struct task_struct *p); static notrace void probe_wakeup_latency_hist_stop(void *v, - struct task_struct *prev, struct task_struct *next); + bool preempt, struct task_struct *prev, struct task_struct *next); static notrace void probe_sched_migrate_task(void *, struct task_struct *task, int cpu); static struct enable_data wakeup_latency_enabled_data = { @@ -907,7 +907,7 @@ out: } static notrace void probe_wakeup_latency_hist_stop(void *v, - struct task_struct *prev, struct task_struct *next) + bool preempt, struct task_struct *prev, struct task_struct *next) { unsigned long flags; int cpu = task_cpu(next); -- 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