aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/traceevent/event-parse.c
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2017-02-16 20:13:52 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-02-17 08:31:44 -0500
commit9c72fd0ff092526ea25c5a59d4a6ed94aeb4a66f (patch)
treee5d5d9f2e2cf0c606b1296c78de10db4902edd58 /tools/lib/traceevent/event-parse.c
parent4be92cf018c391c4ecc5fd091fae8c152de3692f (diff)
tools lib traceevent: It's preempt not prempt
Fix the typo of the function name pevent_data_prempt_count() Signed-off-by: Steven Rostedt <rostedt@goodmis.org> Fixes: c52d9e4e677b ("tools lib traceevent: Add retrieval of preempt count and latency flags") Link: http://lkml.kernel.org/r/20170216201352.469c99de@grimm.local.home Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/traceevent/event-parse.c')
-rw-r--r--tools/lib/traceevent/event-parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c
index 14a4f623c1a5..32171310bf82 100644
--- a/tools/lib/traceevent/event-parse.c
+++ b/tools/lib/traceevent/event-parse.c
@@ -5204,13 +5204,13 @@ int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec)
5204} 5204}
5205 5205
5206/** 5206/**
5207 * pevent_data_prempt_count - parse the preempt count from the record 5207 * pevent_data_preempt_count - parse the preempt count from the record
5208 * @pevent: a handle to the pevent 5208 * @pevent: a handle to the pevent
5209 * @rec: the record to parse 5209 * @rec: the record to parse
5210 * 5210 *
5211 * This returns the preempt count from a record. 5211 * This returns the preempt count from a record.
5212 */ 5212 */
5213int pevent_data_prempt_count(struct pevent *pevent, struct pevent_record *rec) 5213int pevent_data_preempt_count(struct pevent *pevent, struct pevent_record *rec)
5214{ 5214{
5215 return parse_common_pc(pevent, rec->data); 5215 return parse_common_pc(pevent, rec->data);
5216} 5216}