summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-10-20 18:37:45 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-10-20 18:37:44 -0700
commitcc0c20f3fa7cd33e5c7f0c673b65005c637ce2fe (patch)
treef2ae24404310f1e232724b8b014a8cdc513395c3 /include/trace
parent8456550a58cf7d3d4123fc068fc0109d4f72a848 (diff)
parent76ac2a28035f2c5648fd5fb4babcd94ca1c73b2b (diff)
Merge "sched/core_ctl: Move header file to global location"
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/sched.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h
index cd15ae7b8b0c..7778ff3947de 100644
--- a/include/trace/events/sched.h
+++ b/include/trace/events/sched.h
@@ -1323,6 +1323,21 @@ TRACE_EVENT(core_ctl_set_busy,
__entry->is_busy)
);
+TRACE_EVENT(core_ctl_set_boost,
+
+ TP_PROTO(u32 refcount, s32 ret),
+ TP_ARGS(refcount, ret),
+ TP_STRUCT__entry(
+ __field(u32, refcount)
+ __field(s32, ret)
+ ),
+ TP_fast_assign(
+ __entry->refcount = refcount;
+ __entry->ret = ret;
+ ),
+ TP_printk("refcount=%u, ret=%d", __entry->refcount, __entry->ret)
+);
+
/**
* sched_isolate - called when cores are isolated/unisolated
*