Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
static const struct file_operations lttng_fops;
static const struct file_operations lttng_session_fops;
static const struct file_operations lttng_channel_fops;
+static const struct file_operations lttng_event_fops;
/*
* LTTng DebugFS ABI structures.
goto fd_error;
}
event_filp = anon_inode_getfile("[lttng_event]",
- <tng_event_fops,
+ <tng_event_fops, /* TODO: filter */
NULL, O_RDWR);
if (IS_ERR(event_filp)) {
ret = PTR_ERR(event_filp);