From de0203beb7ef2190783411947f19ef1c86d5d3fb Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 28 Jul 2016 12:12:11 -0400 Subject: [PATCH] Fix: Use fs_initcall instead of rootfs_initcall The rootfs_initcall for drivers built as modules was only introduced in kernel 3.14 by commit b46d0c46ccaa366a5bb8ac709fdf2bcaa76221fd. Use fs_initcall instead which comes just before and exists in older kernels. Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- tests/clock-plugin/lttng-clock-plugin-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/clock-plugin/lttng-clock-plugin-test.c b/tests/clock-plugin/lttng-clock-plugin-test.c index bf819329..55facb77 100644 --- a/tests/clock-plugin/lttng-clock-plugin-test.c +++ b/tests/clock-plugin/lttng-clock-plugin-test.c @@ -67,7 +67,7 @@ int lttng_clock_plugin_init(void) { return lttng_clock_register_plugin(<c, THIS_MODULE); } -rootfs_initcall(lttng_clock_plugin_init); +fs_initcall(lttng_clock_plugin_init); static __exit void lttng_clock_plugin_exit(void) -- 2.34.1