Skip to content

Commit

Permalink
tracing: Fix comments for ftrace_event_file/call flags
Browse files Browse the repository at this point in the history
Most of the flags for the struct ftrace_event_file were moved over
to the flags of the struct ftrace_event_call, but the comments were
never updated.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
  • Loading branch information
Steven Rostedt (Red Hat) committed Mar 15, 2013
1 parent 77fd5c1 commit 57d01ad
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions include/linux/ftrace_event.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,13 @@ struct ftrace_event_call {
struct list_head *files;
void *mod;
void *data;
/*
* bit 0: filter_active
* bit 1: allow trace by non root (cap any)
* bit 2: failed to apply filter
* bit 3: ftrace internal event (do not enable)
* bit 4: Event was enabled by module
*/
int flags; /* static flags of different events */

#ifdef CONFIG_PERF_EVENTS
Expand All @@ -248,7 +255,7 @@ enum {

/*
* Ftrace event file flags:
* ENABELD - The event is enabled
* ENABLED - The event is enabled
* RECORDED_CMD - The comms should be recorded at sched_switch
*/
enum {
Expand All @@ -265,12 +272,8 @@ struct ftrace_event_file {

/*
* 32 bit flags:
* bit 1: enabled
* bit 2: filter_active
* bit 3: enabled cmd record
* bit 4: allow trace by non root (cap any)
* bit 5: failed to apply filter
* bit 6: ftrace internal event (do not enable)
* bit 0: enabled
* bit 1: enabled cmd record
*
* Changes to flags must hold the event_mutex.
*
Expand Down

0 comments on commit 57d01ad

Please sign in to comment.