diff options
author | Cong Wang <amwang@redhat.com> | 2013-08-31 13:44:33 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-31 22:30:00 -0400 |
commit | e4c7ed415387cf718ffbec305396c30cee092987 (patch) | |
tree | a484f436d61c6d716eca3f041cbbe8afc04c1c19 /net/openvswitch | |
parent | caf92bc4007036cfac8ee06c845fdfe6496e4fb3 (diff) | |
download | kernel_goldelico_gta04-e4c7ed415387cf718ffbec305396c30cee092987.zip kernel_goldelico_gta04-e4c7ed415387cf718ffbec305396c30cee092987.tar.gz kernel_goldelico_gta04-e4c7ed415387cf718ffbec305396c30cee092987.tar.bz2 |
vxlan: add ipv6 support
This patch adds IPv6 support to vxlan device, as the new version
RFC already mentions it:
http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-03
Cc: David Stevens <dlstevens@us.ibm.com>
Cc: Stephen Hemminger <stephen@networkplumber.org>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-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 36848bd..a006024 100644 --- a/net/openvswitch/vport-vxlan.c +++ b/net/openvswitch/vport-vxlan.c @@ -123,7 +123,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); + vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true, false); if (IS_ERR(vs)) { ovs_vport_free(vport); return (void *)vs; |