|
|
52cf4e |
From 50dda8ce5ee691b97ae640aba4cbe55aa9b62085 Mon Sep 17 00:00:00 2001
|
|
|
52cf4e |
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
|
|
|
52cf4e |
Date: Tue, 15 Jun 2021 01:13:41 +0200
|
|
|
52cf4e |
Subject: [PATCH] compat: account for latest c8s backports
|
|
|
52cf4e |
|
|
|
52cf4e |
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
|
|
|
52cf4e |
---
|
|
|
52cf4e |
src/compat/compat.h | 6 +++---
|
|
|
52cf4e |
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
52cf4e |
|
|
|
52cf4e |
diff --git a/src/compat/compat.h b/src/compat/compat.h
|
|
|
52cf4e |
index 91d4388..b204132 100644
|
|
|
52cf4e |
--- a/src/compat/compat.h
|
|
|
52cf4e |
+++ b/src/compat/compat.h
|
|
|
52cf4e |
@@ -16,7 +16,7 @@
|
|
|
52cf4e |
#define ISRHEL7
|
|
|
52cf4e |
#elif RHEL_MAJOR == 8
|
|
|
52cf4e |
#define ISRHEL8
|
|
|
52cf4e |
-#if RHEL_MINOR >= 4
|
|
|
52cf4e |
+#if RHEL_MINOR >= 5
|
|
|
52cf4e |
#define ISCENTOS8S
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
@@ -757,7 +757,7 @@ static inline void crypto_xor_cpy(u8 *dst, const u8 *src1, const u8 *src2,
|
|
|
52cf4e |
#define hlist_add_behind(a, b) hlist_add_after(b, a)
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
|
|
|
52cf4e |
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0) && !defined(ISCENTOS8S)
|
|
|
52cf4e |
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0) && !defined(ISRHEL8)
|
|
|
52cf4e |
#define totalram_pages() totalram_pages
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
|
|
|
52cf4e |
@@ -849,7 +849,7 @@ static inline void skb_mark_not_on_list(struct sk_buff *skb)
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
#endif
|
|
|
52cf4e |
|
|
|
52cf4e |
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0)
|
|
|
52cf4e |
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0) && !defined(ISCENTOS8S)
|
|
|
52cf4e |
#define genl_dumpit_info(cb) ({ \
|
|
|
52cf4e |
struct { struct nlattr **attrs; } *a = (void *)((u8 *)cb->args + offsetofend(struct dump_ctx, next_allowedip)); \
|
|
|
52cf4e |
BUILD_BUG_ON(sizeof(cb->args) < offsetofend(struct dump_ctx, next_allowedip) + sizeof(*a)); \
|
|
|
52cf4e |
--
|
|
|
52cf4e |
2.31.1
|
|
|
52cf4e |
|