diff options
| author | Steven Rostedt (Google) <[email protected]> | 2023-09-07 22:19:12 -0400 |
|---|---|---|
| committer | Steven Rostedt (Google) <[email protected]> | 2023-09-08 23:13:02 -0400 |
| commit | 6fdac58c560e4d164eb8161987bee045147cabe4 (patch) | |
| tree | dab8496bfc11b2be95d6f8c8ff7ab8d863278ae7 /include/linux | |
| parent | 1ef26d8b2ca5d8715563c951083cf6c385c77d1f (diff) | |
tracing: Remove unused trace_event_file dir field
Now that eventfs structure is used to create the events directory via the
eventfs dynamically allocate code, the "dir" field of the trace_event_file
structure is no longer used. Remove it.
Link: https://lkml.kernel.org/r/[email protected]
Cc: Masami Hiramatsu <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Ajay Kaher <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/trace_events.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/trace_events.h b/include/linux/trace_events.h index eb5c3add939b..12f875e9e69a 100644 --- a/include/linux/trace_events.h +++ b/include/linux/trace_events.h @@ -650,7 +650,6 @@ struct trace_event_file { struct trace_event_call *event_call; struct event_filter __rcu *filter; struct eventfs_file *ef; - struct dentry *dir; struct trace_array *tr; struct trace_subsystem_dir *system; struct list_head triggers; |