Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1583015
| From | "Steven Rostedt (VMware)" <rostedt@goodmis.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] tools lib traceevent: It's preempt not prempt |
| Date | 2017-02-17 02:20 +0100 |
| Message-ID | <tbFnj-5Tm-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fix the typo of the function name pevent_data_prempt_count()
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c
index 14a4f62..3217131 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)
}
/**
- * pevent_data_prempt_count - parse the preempt count from the record
+ * pevent_data_preempt_count - parse the preempt count from the record
* @pevent: a handle to the pevent
* @rec: the record to parse
*
* This returns the preempt count from a record.
*/
-int pevent_data_prempt_count(struct pevent *pevent, struct pevent_record *rec)
+int pevent_data_preempt_count(struct pevent *pevent, struct pevent_record *rec)
{
return parse_common_pc(pevent, rec->data);
}
diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h
index 7aae746..67daa01 100644
--- a/tools/lib/traceevent/event-parse.h
+++ b/tools/lib/traceevent/event-parse.h
@@ -709,7 +709,7 @@ void pevent_data_lat_fmt(struct pevent *pevent,
int pevent_data_type(struct pevent *pevent, struct pevent_record *rec);
struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type);
int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec);
-int pevent_data_prempt_count(struct pevent *pevent, struct pevent_record *rec);
+int pevent_data_preempt_count(struct pevent *pevent, struct pevent_record *rec);
int pevent_data_flags(struct pevent *pevent, struct pevent_record *rec);
const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid);
struct cmdline;
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] tools lib traceevent: It's preempt not prempt "Steven Rostedt (VMware)" <rostedt@goodmis.org> - 2017-02-17 02:20 +0100 Re: [PATCH] tools lib traceevent: It's preempt not prempt Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-02-17 14:40 +0100 [tip:perf/urgent] tools lib traceevent: It's preempt not prempt "tip-bot for Steven Rostedt (VMware)" <tipbot@zytor.com> - 2017-02-21 09:20 +0100
csiph-web