From 8ee099b62e8f9e7135e84a4a024d789233601794 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 11 Sep 2014 12:19:16 -0400 Subject: [PATCH] Fix: tracepoint list anonymous file name Signed-off-by: Mathieu Desnoyers --- lttng-abi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lttng-abi.c b/lttng-abi.c index 02918114..6dc59aed 100644 --- a/lttng-abi.c +++ b/lttng-abi.c @@ -118,7 +118,7 @@ int lttng_abi_tracepoint_list(void) goto fd_error; } - tracepoint_list_file = anon_inode_getfile("[lttng_session]", + tracepoint_list_file = anon_inode_getfile("[lttng_tracepoint_list]", <tng_tracepoint_list_fops, NULL, O_RDWR); if (IS_ERR(tracepoint_list_file)) { -- 2.34.1