From e5177f167c815f3f7b206996557457d7e384a90e Mon Sep 17 00:00:00 2001 From: Andrew Gabbasov Date: Tue, 27 Nov 2012 17:44:17 +0100 Subject: [PATCH] Update sites using kernel version checking macro to new range Signed-off-by: Andrew Gabbasov Signed-off-by: Mathieu Desnoyers --- probes/lttng-probe-vmscan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/probes/lttng-probe-vmscan.c b/probes/lttng-probe-vmscan.c index 0205c7ee..4f5739cb 100644 --- a/probes/lttng-probe-vmscan.c +++ b/probes/lttng-probe-vmscan.c @@ -39,8 +39,8 @@ #define CREATE_TRACE_POINTS #define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(3,0,38)) || \ - LTTNG_KERNEL_RANGE(3,1,0, 3,1,10) +#if ((LINUX_VERSION_CODE <= KERNEL_VERSION(3,0,38)) || \ + LTTNG_KERNEL_RANGE(3,1,0, 3,2,0)) typedef int isolate_mode_t; #endif -- 2.34.1