From 7f57c73c47cba1315dea783d5ee3cbd75a6088c4 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 24 Nov 2010 21:27:53 -0500 Subject: [PATCH] Add file operations on streams Signed-off-by: Mathieu Desnoyers --- ltt-debugfs-abi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltt-debugfs-abi.c b/ltt-debugfs-abi.c index 1e3adfa1..5582fcc4 100644 --- a/ltt-debugfs-abi.c +++ b/ltt-debugfs-abi.c @@ -231,7 +231,7 @@ int lttng_abi_open_stream(struct file *channel_filp) goto fd_error; } stream_filp = anon_inode_getfile("[lttng_stream]", - <tng_stream_fops, + &lib_ring_buffer_file_operations, buf, O_RDWR); if (IS_ERR(stream_filp)) { ret = PTR_ERR(stream_filp); -- 2.34.1