diff options
author | Tom Herbert <therbert@google.com> | 2014-06-05 04:20:29 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-06-05 09:46:39 +0400 |
commit | 359a0ea9875ef4f32c8425bbe1ae348e1fd2ed2a (patch) | |
tree | ca8567d5204c6b891dcf5d3e012ceb4a4f027c09 /net/openvswitch/vport-vxlan.c | |
parent | 4749c09c37030ccdc44aecebe0f71b02a377fc14 (diff) | |
download | linux-359a0ea9875ef4f32c8425bbe1ae348e1fd2ed2a.tar.xz |
vxlan: Add support for UDP checksums (v4 sending, v6 zero csums)
Added VXLAN link configuration for sending UDP checksums, and allowing
TX and RX of UDP6 checksums.
Also, call common iptunnel_handle_offloads and added GSO support for
checksums.
Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/vport-vxlan.c')
-rw-r--r-- | net/openvswitch/vport-vxlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-vxlan.c b/net/openvswitch/vport-vxlan.c index a93efa3f64c3..0edbd95c60e7 100644 --- a/net/openvswitch/vport-vxlan.c +++ b/net/openvswitch/vport-vxlan.c @@ -122,7 +122,7 @@ static struct vport *vxlan_tnl_create(const struct vport_parms *parms) vxlan_port = vxlan_vport(vport); strncpy(vxlan_port->name, parms->name, IFNAMSIZ); - vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true, false); + vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true, 0); if (IS_ERR(vs)) { ovs_vport_free(vport); return (void *)vs; |