From 305d3e421261fe854256c3bc4772d90551f2c441 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 24 Nov 2010 21:32:15 -0500 Subject: [PATCH] Add comment todo: event filter abi Signed-off-by: Mathieu Desnoyers --- ltt-debugfs-abi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ltt-debugfs-abi.c b/ltt-debugfs-abi.c index 5582fcc4..d08459c0 100644 --- a/ltt-debugfs-abi.c +++ b/ltt-debugfs-abi.c @@ -34,6 +34,7 @@ static struct dentry *lttng_dentry; 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. @@ -275,7 +276,7 @@ int lttng_abi_create_event(struct file *channel_filp, 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); -- 2.34.1