On Sun, 23 Jul 2023 01:07:01 +0530 Ajay Kaher <akaher@xxxxxxxxxx> wrote: > Add the inode_operations, file_operations, and helper functions to eventfs: > dcache_dir_open_wrapper() > eventfs_root_lookup() > eventfs_release() > eventfs_set_ef_status_free() > eventfs_post_create_dir() > > The inode_operations and file_operations functions will be called from the > VFS layer. > I would add in this change log: create_file() and create_dir() are added as stub functions and will be filled in later. > Signed-off-by: Ajay Kaher <akaher@xxxxxxxxxx> > Co-developed-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> > Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> > Tested-by: Ching-lin Yu <chinglinyu@xxxxxxxxxx> > --- > fs/tracefs/event_inode.c | 312 +++++++++++++++++++++++++++++++++++++++ > fs/tracefs/internal.h | 2 + > 2 files changed, 314 insertions(+) > -- Steve