From 84d68294c71b7c2532b216d4d2a1dc9f606cc5b9 Mon Sep 17 00:00:00 2001 From: gaochao Date: Tue, 7 Jun 2022 14:31:29 +0800 Subject: [PATCH] sched: fix check build error in eas_sched.h ohos inclusion category: feature issue: #I5B1Z5 CVE: NA Signed-off-by: gaochao --- include/trace/events/eas_sched.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/trace/events/eas_sched.h b/include/trace/events/eas_sched.h index bd24c9ef5b6e..d015a3cf493d 100644 --- a/include/trace/events/eas_sched.h +++ b/include/trace/events/eas_sched.h @@ -34,7 +34,7 @@ TRACE_EVENT(sched_find_cas_cpu_each, __entry->cpu_cap = cpu_cap; ), - TP_printk("comm=%s pid=%d prio=%d cpu=%d target_cpu=%d isolated=%d idle=%d task_util=%lu cpu_util=%lu cpu_cap=%lu", + TP_printk("comm=%s pid=%d prio=%d cpu=%d target_cpu=%d isolated=%d idle=%lu task_util=%lu cpu_util=%lu cpu_cap=%lu", __entry->comm, __entry->pid, __entry->prio, __entry->cpu, __entry->target_cpu, __entry->isolated, __entry->idle, __entry->task_util, @@ -68,7 +68,7 @@ TRACE_EVENT(sched_find_cas_cpu, __entry->target_cpu = target_cpu; ), - TP_printk("comm=%s pid=%d prio=%d lowest_mask=%s tutil=%lu perfer_idle=%u prev=%d target=%d ", + TP_printk("comm=%s pid=%d prio=%d lowest_mask=%s tutil=%lu prev=%d target=%d ", __entry->comm, __entry->pid, __entry->prio, __get_bitmask(lowest), __entry->tutil, __entry->prev_cpu, __entry->target_cpu) -- Gitee