Add comment todo: event filter abi
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 25 Nov 2010 02:32:15 +0000 (21:32 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 25 Nov 2010 02:32:15 +0000 (21:32 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
ltt-debugfs-abi.c

index 5582fcc4fbfc8f17716673792d8164e250bba4aa..d08459c0dbabbdd65e3f9aa5088893b9e8495f44 100644 (file)
@@ -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]",
-                                       &lttng_event_fops,
+                                       &lttng_event_fops, /* TODO: filter */
                                        NULL, O_RDWR);
        if (IS_ERR(event_filp)) {
                ret = PTR_ERR(event_filp);
This page took 0.026793 seconds and 4 git commands to generate.