diff options
author | Steven Rostedt (Google) | 2023-09-07 22:19:12 -0400 |
---|---|---|
committer | Steven Rostedt (Google) | 2023-09-08 23:13:02 -0400 |
commit | 6fdac58c560e4d164eb8161987bee045147cabe4 (patch) | |
tree | dab8496bfc11b2be95d6f8c8ff7ab8d863278ae7 /include | |
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/20230908022001.580400115@goodmis.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Ajay Kaher <akaher@vmware.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'include')
-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; |