diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-07-06 16:41:23 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-07-06 18:12:33 +0200 |
commit | ce02d4cf1ac8cf7b521871ba4c46219b89066908 (patch) | |
tree | bc098315416807cf25c130f0d9706f41e2e5f6a6 /src/compat/compat.h | |
parent | e5c4d8e6e21e39fe5f8838c22143cd554e4d8b3b (diff) |
device: cleanup register_netdev logic
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/compat/compat.h')
-rw-r--r-- | src/compat/compat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 38803b2..8d9038a 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -335,6 +335,11 @@ static inline void kvfree(const void *addr) } #endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 9) +#include <linux/netdevice.h> +#define priv_destructor destructor +#endif + /* https://lkml.org/lkml/2017/6/23/790 */ #if IS_ENABLED(CONFIG_NF_CONNTRACK) #include <linux/ip.h> |