aarch64: blacklist gcc prior to 5.1
[lttng-modules.git] / include / wrapper / compiler.h
index 38974c062e0cc9428ee9541c7b8ac2fca736210c..e0bd33f4ee860c52b5ba10a8eedcabb0eea3ae4e 100644 (file)
@@ -9,6 +9,7 @@
 #define _LTTNG_WRAPPER_COMPILER_H
 
 #include <linux/compiler.h>
+#include <linux/version.h>
 
 /*
  * Don't allow compiling with buggy compiler.
 #   error Your gcc version produces clobbered frame accesses
 #  endif
 # endif
+
+/*
+ * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63293
+ */
+# ifdef __aarch64__
+#  if GCC_VERSION < 50100
+#   error Your gcc version performs unsafe access to deallocated stack
+#  endif
+# endif
+
 #endif
 
 /*
 # define WRITE_ONCE(x, val)    ({ ACCESS_ONCE(x) = val; })
 #endif
 
+/*
+ * In v4.15 a smp read barrier was added to READ_ONCE to replace
+ * lockless_dereference(), replicate this behavior on prior kernels
+ * and remove calls to smp_read_barrier_depends which was dropped
+ * in v5.9.
+ */
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0))
+#define LTTNG_READ_ONCE(x)     READ_ONCE(x)
+#else
+#define LTTNG_READ_ONCE(x)                     \
+({                                             \
+       typeof(x) __val = READ_ONCE(x);         \
+       smp_read_barrier_depends();             \
+       __val;                                  \
+})
+#endif
+
 #define __LTTNG_COMPOUND_LITERAL(type, ...)    (type[]) { __VA_ARGS__ }
 
 #endif /* _LTTNG_WRAPPER_COMPILER_H */
This page took 0.023671 seconds and 4 git commands to generate.