aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/Kbuild
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-05-22 14:40:49 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-05-30 18:07:28 +0200
commit44cf477cfa07a1b0750e4a7688241083e35cefae (patch)
tree7c1df7a901a6568a192a10e16f48897dbacda38b /src/Kbuild
parentman: update wg-quick(8) to show Debian resolvconf braindamage (diff)
downloadwireguard-monolithic-historical-44cf477cfa07a1b0750e4a7688241083e35cefae.tar.xz
wireguard-monolithic-historical-44cf477cfa07a1b0750e4a7688241083e35cefae.zip
compat: ship padata if kernel doesn't have it
Diffstat (limited to '')
-rw-r--r--src/Kbuild14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/Kbuild b/src/Kbuild
index 4a36e25..76687df 100644
--- a/src/Kbuild
+++ b/src/Kbuild
@@ -24,26 +24,18 @@ ifeq ($(CONFIG_ARM),y)
wireguard-y += crypto/chacha20-neon-arm.o
endif
-
-include $(src)/compat/Kbuild.include
-
ifneq ($(KBUILD_EXTMOD),)
CONFIG_WIREGUARD := m
-ifeq ($(CONFIG_WIREGUARD_PARALLEL),)
-ifneq (,$(filter $(CONFIG_PADATA),y m))
+ifneq ($(CONFIG_SMP),)
ccflags-y += -DCONFIG_WIREGUARD_PARALLEL=y
endif
-endif
ifneq ($(CONFIG_MODULES),)
ifeq ($(CONFIG_NETFILTER_XT_MATCH_HASHLIMIT),)
$(error "WireGuard requires CONFIG_NETFILTER_XT_MATCH_HASHLIMIT to be configured in your kernel. See https://www.wireguard.io/install/#kernel-requirements for more info")
endif
-ifeq ($(CONFIG_PADATA),)
-ifneq ($(CONFIG_SMP),)
-$(warning "PEFORMANCE WARNING: WireGuard has enormous speed benefits when using CONFIG_PADATA on SMP systems. Please enable CONFIG_PADATA in your kernel configuration. See https://www.wireguard.io/install/#kernel-requirements for more info.")
-endif
-endif
endif
endif
+include $(src)/compat/Kbuild.include
+
obj-$(CONFIG_WIREGUARD) := wireguard.o