From d25a4cef8348ff361e9e4ca30d451159fe59d1e8 Mon Sep 17 00:00:00 2001 From: Samuel Martin Date: Mon, 17 Jun 2013 10:28:51 -0400 Subject: [PATCH] Fix build and load against linux-2.6.33.x * lttng-event.h declared but did not implement lttng_add_perf_counter_to_ctx on kernel >=2.6.33, the implementation was in lttng-context-perf-counters.c, which was only included for kernel >=2.6.34. This prevented the module from being loaded. * on kernel 2.6.33.x, lttng-context-perf-counters.c complains about implicit declaration for {get,put}_online_cpus and {,un}register_cpu_notifier; so fix header inclusion. Signed-off-by: Samuel Martin Signed-off-by: Mathieu Desnoyers --- lttng-context-perf-counters.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lttng-context-perf-counters.c b/lttng-context-perf-counters.c index b97b40b9..8c4a48a7 100644 --- a/lttng-context-perf-counters.c +++ b/lttng-context-perf-counters.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "lttng-events.h" #include "wrapper/ringbuffer/frontend_types.h" #include "wrapper/vmalloc.h" -- 2.34.1