summaryrefslogtreecommitdiffstats
path: root/net/ipv6/Makefile
diff options
context:
space:
mode:
authorSteffen Klassert <steffen.klassert@secunet.com>2017-02-15 03:40:00 -0500
committerSteffen Klassert <steffen.klassert@secunet.com>2017-02-15 05:04:11 -0500
commit7785bba299a8dc8fe8390a0183dad3cafb3f1d80 (patch)
tree33c29b31f0e66433b340998aa822bebe322aa116 /net/ipv6/Makefile
parent54ef207ac8f7a17d677082157a29f4df8499dc81 (diff)
esp: Add a software GRO codepath
This patch adds GRO ifrastructure and callbacks for ESP on ipv4 and ipv6. In case the GRO layer detects an ESP packet, the esp{4,6}_gro_receive() function does a xfrm state lookup and calls the xfrm input layer if it finds a matching state. The packet will be decapsulated and reinjected it into layer 2. Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/ipv6/Makefile')
-rw-r--r--net/ipv6/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/Makefile b/net/ipv6/Makefile
index a9e9fec387ce..217e9ff0e24b 100644
--- a/net/ipv6/Makefile
+++ b/net/ipv6/Makefile
@@ -30,6 +30,7 @@ ipv6-objs += $(ipv6-y)
30 30
31obj-$(CONFIG_INET6_AH) += ah6.o 31obj-$(CONFIG_INET6_AH) += ah6.o
32obj-$(CONFIG_INET6_ESP) += esp6.o 32obj-$(CONFIG_INET6_ESP) += esp6.o
33obj-$(CONFIG_INET6_ESP_OFFLOAD) += esp6_offload.o
33obj-$(CONFIG_INET6_IPCOMP) += ipcomp6.o 34obj-$(CONFIG_INET6_IPCOMP) += ipcomp6.o
34obj-$(CONFIG_INET6_XFRM_TUNNEL) += xfrm6_tunnel.o 35obj-$(CONFIG_INET6_XFRM_TUNNEL) += xfrm6_tunnel.o
35obj-$(CONFIG_INET6_TUNNEL) += tunnel6.o 36obj-$(CONFIG_INET6_TUNNEL) += tunnel6.o