diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-14 20:16:04 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-14 20:16:04 +0200 |
commit | 1b9dce8ccc7dbae17c2b14303b7e9f918d305796 (patch) | |
tree | 57d18cab3793243270b217d4a317bfd79dbe7f7d | |
parent | f432bb00cc1c36ff946021e17551d6ddca88b7b1 (diff) |
compat: backport for OpenSUSE 15
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/compat/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 27f22b3..e077188 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -580,7 +580,7 @@ struct _____dummy_container { char dev; }; #define genl_dump_check_consistent(a, b) genl_dump_check_consistent(a, b, &genl_family) #endif -#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 13, 0) && !defined(ISRHEL7) +#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 13, 0) && !defined(ISRHEL7) && !defined(ISOPENSUSE15) static inline void *skb_put_data(struct sk_buff *skb, const void *data, unsigned int len) { void *tmp = skb_put(skb, len); |