From: Michael Jeanson Date: Tue, 23 May 2017 19:43:25 +0000 (-0400) Subject: Fix: ext3 was completely removed from the kernel in v4.3 X-Git-Tag: v2.8.6~9 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=34ab39637929b1c574881aa805f943b6d9a5c964;hp=8929785892cc7e8042d514c164e7cde9066af144;p=lttng-modules.git Fix: ext3 was completely removed from the kernel in v4.3 Don't display the warning about missing ext3 headers on kernels >= 4.3 See upstream commit e31fb9e00543e5d3c5b686747d3c862bc09b59f3 Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/probes/Kbuild b/probes/Kbuild index 23d48485..56edebd4 100644 --- a/probes/Kbuild +++ b/probes/Kbuild @@ -92,13 +92,15 @@ ifneq ($(CONFIG_EXT3_FS),) ext3_dep = $(srctree)/fs/ext3/*.h ext3_dep_check = $(wildcard $(ext3_dep)) ext3 = $(shell \ - if [ $(VERSION) -ge 4 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 1 \) ] ; then \ - if [ \( $(VERSION) -ge 4 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 4 \) \) -a \ - -z "$(ext3_dep_check)" ] ; then \ - echo "warn" ; \ - exit ; \ + if [ $(VERSION) -lt 4 -o \( $(VERSION) -eq 4 -a $(PATCHLEVEL) -lt 3 \) ] ; then \ + if [ $(VERSION) -ge 4 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 1 \) ] ; then \ + if [ \( $(VERSION) -ge 4 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 4 \) \) -a \ + -z "$(ext3_dep_check)" ] ; then \ + echo "warn" ; \ + exit ; \ + fi; \ + echo "lttng-probe-ext3.o" ; \ fi; \ - echo "lttng-probe-ext3.o" ; \ fi;) ifeq ($(ext3),warn) $(warning Files $(ext3_dep) not found. Probe "ext3" is disabled. Use full kernel source tree to enable it.)