From: Mathieu Desnoyers Date: Thu, 25 Nov 2010 02:32:15 +0000 (-0500) Subject: Add comment todo: event filter abi X-Git-Tag: v2.0-pre1~211 X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=305d3e421261fe854256c3bc4772d90551f2c441;p=lttng-modules.git Add comment todo: event filter abi Signed-off-by: Mathieu Desnoyers --- 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);