aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorNathan Chancellor <natechancellor@gmail.com>2018-09-26 15:30:58 -0700
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-02 03:41:49 +0200
commit2b4e2311ecd4cffe265e727d43b1595331cc1035 (patch)
tree63158bf05ce56b324d86bf85c314c3a7ead0587a
parentqemu: support more arm big endian platforms (diff)
downloadwireguard-monolithic-historical-2b4e2311ecd4cffe265e727d43b1595331cc1035.tar.xz
wireguard-monolithic-historical-2b4e2311ecd4cffe265e727d43b1595331cc1035.zip
compat: kernels < 3.17 don't have read_cpuid_part
Use read_cpuid_part_number, which was the same thing before upstream commit af040ffc9ba1 ("ARM: make it easier to check the CPU part number correctly"). Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Diffstat (limited to '')
-rw-r--r--src/compat/compat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h
index 472c540..17606f5 100644
--- a/src/compat/compat.h
+++ b/src/compat/compat.h
@@ -726,6 +726,10 @@ static inline void crypto_xor_cpy(u8 *dst, const u8 *src1, const u8 *src2,
}
#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0)
+#define read_cpuid_part() read_cpuid_part_number()
+#endif
+
/* https://lkml.kernel.org/r/20170624021727.17835-1-Jason@zx2c4.com */
#if IS_ENABLED(CONFIG_NF_CONNTRACK)
#include <linux/ip.h>