diff options
author | 2016-11-25 21:14:50 +0100 | |
---|---|---|
committer | 2016-11-29 13:18:33 +0100 | |
commit | e1f203488cc652bbb6b062bf1eb454982e95cca6 (patch) | |
tree | 4bd4b17848a983aaad7b1fc024ba21ef8afffd42 /src/tests | |
parent | device: conntrack is optional (diff) | |
download | wireguard-monolithic-historical-e1f203488cc652bbb6b062bf1eb454982e95cca6.tar.xz wireguard-monolithic-historical-e1f203488cc652bbb6b062bf1eb454982e95cca6.zip |
ratelimiter: load hashlimit at modinsert time
This fixes a potential race with net_lock and rtnl_lock.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/qemu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/qemu/Makefile b/src/tests/qemu/Makefile index 19ad613..b60aa5a 100644 --- a/src/tests/qemu/Makefile +++ b/src/tests/qemu/Makefile @@ -106,7 +106,7 @@ $(KERNEL_PATH)/.installed: $(KERNEL_TAR) mkdir -p $(BUILD_PATH) tar -C $(BUILD_PATH) -xf $< sed -i "/^if INET\$$/a source \"net/wireguard/Kconfig\"" $(KERNEL_PATH)/net/Kconfig - sed -i "/^obj-\$$(CONFIG_NET).*:=/a obj-\$$(CONFIG_WIREGUARD) += wireguard/" $(KERNEL_PATH)/net/Makefile + sed -i "/^obj-\$$(CONFIG_NETFILTER).*+=/a obj-\$$(CONFIG_WIREGUARD) += wireguard/" $(KERNEL_PATH)/net/Makefile ln -sf $(shell readlink -f ../..) $(KERNEL_PATH)/net/wireguard touch $@ |