Remove debugfs file (keep only proc file)
[lttng-modules.git] / ltt-events.c
index 42299142ecf274b00ad758596b856ccf902a6186..03dbb2036af923e3c60841783bca3f46ac528c00 100644 (file)
@@ -981,7 +981,7 @@ static int __init ltt_events_init(void)
        event_cache = KMEM_CACHE(ltt_event, 0);
        if (!event_cache)
                return -ENOMEM;
-       ret = ltt_debugfs_abi_init();
+       ret = lttng_abi_init();
        if (ret)
                goto error_abi;
        return 0;
@@ -996,7 +996,7 @@ static void __exit ltt_events_exit(void)
 {
        struct ltt_session *session, *tmpsession;
 
-       ltt_debugfs_abi_exit();
+       lttng_abi_exit();
        list_for_each_entry_safe(session, tmpsession, &sessions, list)
                ltt_session_destroy(session);
        kmem_cache_destroy(event_cache);
This page took 0.023977 seconds and 4 git commands to generate.