diff options
author | Tom Herbert <tom@herbertland.com> | 2016-04-05 08:22:53 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-07 16:53:29 -0400 |
commit | 5602c48cf87562c2f95b831d690631935e834295 (patch) | |
tree | a9545643ad9e40b42d07ee32c03974b590fb2dd5 /include | |
parent | 38fd2af24fcfda93f9fea3e53f26e48775ae9e09 (diff) | |
download | linux-5602c48cf87562c2f95b831d690631935e834295.tar.bz2 |
vxlan: change vxlan to use UDP socket GRO
Adapt vxlan_gro_receive, vxlan_gro_complete to take a socket argument.
Set these functions in tunnel_config. Don't set udp_offloads any more.
Signed-off-by: Tom Herbert <tom@herbertland.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/vxlan.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/vxlan.h b/include/net/vxlan.h index dcc6f4057115..2f168f0ea32c 100644 --- a/include/net/vxlan.h +++ b/include/net/vxlan.h @@ -189,7 +189,6 @@ struct vxlan_sock { struct rcu_head rcu; struct hlist_head vni_list[VNI_HASH_SIZE]; atomic_t refcnt; - struct udp_offload udp_offloads; u32 flags; }; |