summaryrefslogtreecommitdiffstats
path: root/net/openvswitch
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2015-07-21 04:44:06 -0400
committerDavid S. Miller <davem@davemloft.net>2015-07-21 13:39:07 -0400
commit614732eaa12dd462c0ab274700bed14f36afea5e (patch)
treea1c33082de3ab1192f072605ab1abe106f11065c /net/openvswitch
parentc9db965c524ea27451e60d5ddcd242f6c33a70fd (diff)
openvswitch: Use regular VXLAN net_device device
This gets rid of all OVS specific VXLAN code in the receive and transmit path by using a VXLAN net_device to represent the vport. Only a small shim layer remains which takes care of handling the VXLAN specific OVS Netlink configuration. Unexports vxlan_sock_add(), vxlan_sock_release(), vxlan_xmit_skb() since they are no longer needed. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r--net/openvswitch/Kconfig12
-rw-r--r--net/openvswitch/Makefile1
-rw-r--r--net/openvswitch/flow_netlink.c6
-rw-r--r--net/openvswitch/vport-netdev.c201
-rw-r--r--net/openvswitch/vport-vxlan.c322
-rw-r--r--net/openvswitch/vport-vxlan.h11
6 files changed, 201 insertions, 352 deletions
diff --git a/net/openvswitch/Kconfig b/net/openvswitch/Kconfig
index 15840401a2ce..1119f46b80b4 100644
--- a/net/openvswitch/Kconfig
+++ b/net/openvswitch/Kconfig
@@ -44,18 +44,6 @@ config OPENVSWITCH_GRE
44 44
45 If unsure, say Y. 45 If unsure, say Y.
46 46
47config OPENVSWITCH_VXLAN
48 tristate "Open vSwitch VXLAN tunneling support"
49 depends on OPENVSWITCH
50 depends on VXLAN
51 default OPENVSWITCH
52 ---help---
53 If you say Y here, then the Open vSwitch will be able create vxlan vport.
54
55 Say N to exclude this support and reduce the binary size.
56
57 If unsure, say Y.
58
59config OPENVSWITCH_GENEVE 47config OPENVSWITCH_GENEVE
60 tristate "Open vSwitch Geneve tunneling support" 48 tristate "Open vSwitch Geneve tunneling support"
61 depends on OPENVSWITCH 49 depends on OPENVSWITCH
diff --git a/net/openvswitch/Makefile b/net/openvswitch/Makefile
index 91b9478413ef..38e0e149c55e 100644
--- a/net/openvswitch/Makefile
+++ b/net/openvswitch/Makefile
@@ -16,5 +16,4 @@ openvswitch-y := \
16 vport-netdev.o 16 vport-netdev.o
17 17
18obj-$(CONFIG_OPENVSWITCH_GENEVE)+= vport-geneve.o 18obj-$(CONFIG_OPENVSWITCH_GENEVE)+= vport-geneve.o
19obj-$(CONFIG_OPENVSWITCH_VXLAN) += vport-vxlan.o
20obj-$(CONFIG_OPENVSWITCH_GRE) += vport-gre.o 19obj-$(CONFIG_OPENVSWITCH_GRE) += vport-gre.o
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c
index e7906dfb8814..a6eb77ab1a64 100644
--- a/net/openvswitch/flow_netlink.c
+++ b/net/openvswitch/flow_netlink.c
@@ -47,9 +47,9 @@
47#include <net/ipv6.h> 47#include <net/ipv6.h>
48#include <net/ndisc.h> 48#include <net/ndisc.h>
49#include <net/mpls.h> 49#include <net/mpls.h>
50#include <net/vxlan.h>
50 51
51#include "flow_netlink.h" 52#include "flow_netlink.h"
52#include "vport-vxlan.h"
53 53
54struct ovs_len_tbl { 54struct ovs_len_tbl {
55 int len; 55 int len;
@@ -475,7 +475,7 @@ static int vxlan_tun_opt_from_nlattr(const struct nlattr *a,
475{ 475{
476 struct nlattr *tb[OVS_VXLAN_EXT_MAX+1]; 476 struct nlattr *tb[OVS_VXLAN_EXT_MAX+1];
477 unsigned long opt_key_offset; 477 unsigned long opt_key_offset;
478 struct ovs_vxlan_opts opts; 478 struct vxlan_metadata opts;
479 int err; 479 int err;
480 480
481 BUILD_BUG_ON(sizeof(opts) > sizeof(match->key->tun_opts)); 481 BUILD_BUG_ON(sizeof(opts) > sizeof(match->key->tun_opts));
@@ -626,7 +626,7 @@ static int ipv4_tun_from_nlattr(const struct nlattr *attr,
626static int vxlan_opt_to_nlattr(struct sk_buff *skb, 626static int vxlan_opt_to_nlattr(struct sk_buff *skb,
627 const void *tun_opts, int swkey_tun_opts_len) 627 const void *tun_opts, int swkey_tun_opts_len)
628{ 628{
629 const struct ovs_vxlan_opts *opts = tun_opts; 629 const struct vxlan_metadata *opts = tun_opts;
630 struct nlattr *nla; 630 struct nlattr *nla;
631 631
632 nla = nla_nest_start(skb, OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS); 632 nla = nla_nest_start(skb, OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS);
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c
index e682bdc34a5c..68d0582fc001 100644
--- a/net/openvswitch/vport-netdev.c
+++ b/net/openvswitch/vport-netdev.c
@@ -27,9 +27,13 @@
27#include <linux/skbuff.h> 27#include <linux/skbuff.h>
28#include <linux/openvswitch.h> 28#include <linux/openvswitch.h>
29 29
30#include <net/llc.h> 30#include <net/udp.h>
31#include <net/ip_tunnels.h>
32#include <net/rtnetlink.h>
33#include <net/vxlan.h>
31 34
32#include "datapath.h" 35#include "datapath.h"
36#include "vport.h"
33#include "vport-internal_dev.h" 37#include "vport-internal_dev.h"
34#include "vport-netdev.h" 38#include "vport-netdev.h"
35 39
@@ -147,7 +151,8 @@ static void free_port_rcu(struct rcu_head *rcu)
147{ 151{
148 struct vport *vport = container_of(rcu, struct vport, rcu); 152 struct vport *vport = container_of(rcu, struct vport, rcu);
149 153
150 dev_put(vport->dev); 154 if (vport->dev)
155 dev_put(vport->dev);
151 ovs_vport_free(vport); 156 ovs_vport_free(vport);
152} 157}
153 158
@@ -221,12 +226,202 @@ static struct vport_ops ovs_netdev_vport_ops = {
221 .send = netdev_send, 226 .send = netdev_send,
222}; 227};
223 228
229/* Compat code for old userspace. */
230#if IS_ENABLED(CONFIG_VXLAN)
231static struct vport_ops ovs_vxlan_netdev_vport_ops;
232
233static int vxlan_get_options(const struct vport *vport, struct sk_buff *skb)
234{
235 struct vxlan_dev *vxlan = netdev_priv(vport->dev);
236 __be16 dst_port = vxlan->cfg.dst_port;
237
238 if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, ntohs(dst_port)))
239 return -EMSGSIZE;
240
241 if (vxlan->flags & VXLAN_F_GBP) {
242 struct nlattr *exts;
243
244 exts = nla_nest_start(skb, OVS_TUNNEL_ATTR_EXTENSION);
245 if (!exts)
246 return -EMSGSIZE;
247
248 if (vxlan->flags & VXLAN_F_GBP &&
249 nla_put_flag(skb, OVS_VXLAN_EXT_GBP))
250 return -EMSGSIZE;
251
252 nla_nest_end(skb, exts);
253 }
254
255 return 0;
256}
257
258static const struct nla_policy exts_policy[OVS_VXLAN_EXT_MAX + 1] = {
259 [OVS_VXLAN_EXT_GBP] = { .type = NLA_FLAG, },
260};
261
262static int vxlan_configure_exts(struct vport *vport, struct nlattr *attr,
263 struct vxlan_config *conf)
264{
265 struct nlattr *exts[OVS_VXLAN_EXT_MAX + 1];
266 int err;
267
268 if (nla_len(attr) < sizeof(struct nlattr))
269 return -EINVAL;
270
271 err = nla_parse_nested(exts, OVS_VXLAN_EXT_MAX, attr, exts_policy);
272 if (err < 0)
273 return err;
274
275 if (exts[OVS_VXLAN_EXT_GBP])
276 conf->flags |= VXLAN_F_GBP;
277
278 return 0;
279}
280
281static struct vport *vxlan_tnl_create(const struct vport_parms *parms)
282{
283 struct net *net = ovs_dp_get_net(parms->dp);
284 struct nlattr *options = parms->options;
285 struct net_device *dev;
286 struct vport *vport;
287 struct nlattr *a;
288 int err;
289 struct vxlan_config conf = {
290 .no_share = true,
291 .flags = VXLAN_F_FLOW_BASED | VXLAN_F_COLLECT_METADATA,
292 };
293
294 if (!options) {
295 err = -EINVAL;
296 goto error;
297 }
298
299 a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT);
300 if (a && nla_len(a) == sizeof(u16)) {
301 conf.dst_port = htons(nla_get_u16(a));
302 } else {
303 /* Require destination port from userspace. */
304 err = -EINVAL;
305 goto error;
306 }
307
308 vport = ovs_vport_alloc(0, &ovs_vxlan_netdev_vport_ops, parms);
309 if (IS_ERR(vport))
310 return vport;
311
312 a = nla_find_nested(options, OVS_TUNNEL_ATTR_EXTENSION);
313 if (a) {
314 err = vxlan_configure_exts(vport, a, &conf);
315 if (err) {
316 ovs_vport_free(vport);
317 goto error;
318 }
319 }
320
321 rtnl_lock();
322 dev = vxlan_dev_create(net, parms->name, NET_NAME_USER, &conf);
323 if (IS_ERR(dev)) {
324 rtnl_unlock();
325 ovs_vport_free(vport);
326 return ERR_CAST(dev);
327 }
328
329 dev_change_flags(dev, dev->flags | IFF_UP);
330 rtnl_unlock();
331 return vport;
332error:
333 return ERR_PTR(err);
334}
335
336static struct vport *vxlan_create(const struct vport_parms *parms)
337{
338 struct vport *vport;
339
340 vport = vxlan_tnl_create(parms);
341 if (IS_ERR(vport))
342 return vport;
343
344 return netdev_link(vport, parms->name);
345}
346
347static void vxlan_destroy(struct vport *vport)
348{
349 rtnl_lock();
350 if (vport->dev->priv_flags & IFF_OVS_DATAPATH)
351 ovs_netdev_detach_dev(vport);
352
353 /* Early release so we can unregister the device */
354 dev_put(vport->dev);
355 rtnl_delete_link(vport->dev);
356 vport->dev = NULL;
357 rtnl_unlock();
358
359 call_rcu(&vport->rcu, free_port_rcu);
360}
361
362static int vxlan_get_egress_tun_info(struct vport *vport, struct sk_buff *skb,
363 struct ip_tunnel_info *egress_tun_info)
364{
365 struct vxlan_dev *vxlan = netdev_priv(vport->dev);
366 struct net *net = ovs_dp_get_net(vport->dp);
367 __be16 dst_port = vxlan_dev_dst_port(vxlan);
368 __be16 src_port;
369 int port_min;
370 int port_max;
371
372 inet_get_local_port_range(net, &port_min, &port_max);
373 src_port = udp_flow_src_port(net, skb, 0, 0, true);
374
375 return ovs_tunnel_get_egress_info(egress_tun_info, net,
376 OVS_CB(skb)->egress_tun_info,
377 IPPROTO_UDP, skb->mark,
378 src_port, dst_port);
379}
380
381static struct vport_ops ovs_vxlan_netdev_vport_ops = {
382 .type = OVS_VPORT_TYPE_VXLAN,
383 .create = vxlan_create,
384 .destroy = vxlan_destroy,
385 .get_options = vxlan_get_options,
386 .send = netdev_send,
387 .get_egress_tun_info = vxlan_get_egress_tun_info,
388};
389
390static int vxlan_compat_init(void)
391{
392 return ovs_vport_ops_register(&ovs_vxlan_netdev_vport_ops);
393}
394
395static void vxlan_compat_exit(void)
396{
397 ovs_vport_ops_unregister(&ovs_vxlan_netdev_vport_ops);
398}
399#else
400static int vxlan_compat_init(void)
401{
402 return 0;
403}
404
405static void vxlan_compat_exit(void)
406{
407}
408#endif
409
224int __init ovs_netdev_init(void) 410int __init ovs_netdev_init(void)
225{ 411{
226 return ovs_vport_ops_register(&ovs_netdev_vport_ops); 412 int err;
413
414 err = ovs_vport_ops_register(&ovs_netdev_vport_ops);
415 if (err)
416 return err;
417 err = vxlan_compat_init();
418 if (err)
419 vxlan_compat_exit();
420 return err;
227} 421}
228 422
229void ovs_netdev_exit(void) 423void ovs_netdev_exit(void)
230{ 424{
231 ovs_vport_ops_unregister(&ovs_netdev_vport_ops); 425 ovs_vport_ops_unregister(&ovs_netdev_vport_ops);
426 vxlan_compat_exit();
232} 427}
diff --git a/net/openvswitch/vport-vxlan.c b/net/openvswitch/vport-vxlan.c
deleted file mode 100644
index 6f7986fabb70..000000000000
--- a/net/openvswitch/vport-vxlan.c
+++ /dev/null
@@ -1,322 +0,0 @@
1/*
2 * Copyright (c) 2014 Nicira, Inc.
3 * Copyright (c) 2013 Cisco Systems, Inc.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
18 */
19
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22#include <linux/in.h>
23#include <linux/ip.h>
24#include <linux/net.h>
25#include <linux/rculist.h>
26#include <linux/udp.h>
27#include <linux/module.h>
28
29#include <net/icmp.h>
30#include <net/ip.h>
31#include <net/udp.h>
32#include <net/ip_tunnels.h>
33#include <net/rtnetlink.h>
34#include <net/route.h>
35#include <net/dsfield.h>
36#include <net/inet_ecn.h>
37#include <net/net_namespace.h>
38#include <net/netns/generic.h>
39#include <net/vxlan.h>
40
41#include "datapath.h"
42#include "vport.h"
43#include "vport-vxlan.h"
44
45/**
46 * struct vxlan_port - Keeps track of open UDP ports
47 * @vs: vxlan_sock created for the port.
48 * @name: vport name.
49 */
50struct vxlan_port {
51 struct vxlan_sock *vs;
52 char name[IFNAMSIZ];
53 u32 exts; /* VXLAN_F_* in <net/vxlan.h> */
54};
55
56static struct vport_ops ovs_vxlan_vport_ops;
57
58static inline struct vxlan_port *vxlan_vport(const struct vport *vport)
59{
60 return vport_priv(vport);
61}
62
63/* Called with rcu_read_lock and BH disabled. */
64static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb,
65 struct vxlan_metadata *md)
66{
67 struct ip_tunnel_info tun_info;
68 struct vxlan_port *vxlan_port;
69 struct vport *vport = vs->data;
70 struct iphdr *iph;
71 struct ovs_vxlan_opts opts = {
72 .gbp = md->gbp,
73 };
74 __be64 key;
75 __be16 flags;
76
77 flags = TUNNEL_KEY | (udp_hdr(skb)->check != 0 ? TUNNEL_CSUM : 0);
78 vxlan_port = vxlan_vport(vport);
79 if (vxlan_port->exts & VXLAN_F_GBP && md->gbp)
80 flags |= TUNNEL_VXLAN_OPT;
81
82 /* Save outer tunnel values */
83 iph = ip_hdr(skb);
84 key = cpu_to_be64(ntohl(md->vni) >> 8);
85 ip_tunnel_info_init(&tun_info, iph,
86 udp_hdr(skb)->source, udp_hdr(skb)->dest,
87 key, flags, &opts, sizeof(opts));
88
89 ovs_vport_receive(vport, skb, &tun_info);
90}
91
92static int vxlan_get_options(const struct vport *vport, struct sk_buff *skb)
93{
94 struct vxlan_port *vxlan_port = vxlan_vport(vport);
95 __be16 dst_port = inet_sk(vxlan_port->vs->sock->sk)->inet_sport;
96
97 if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, ntohs(dst_port)))
98 return -EMSGSIZE;
99
100 if (vxlan_port->exts) {
101 struct nlattr *exts;
102
103 exts = nla_nest_start(skb, OVS_TUNNEL_ATTR_EXTENSION);
104 if (!exts)
105 return -EMSGSIZE;
106
107 if (vxlan_port->exts & VXLAN_F_GBP &&
108 nla_put_flag(skb, OVS_VXLAN_EXT_GBP))
109 return -EMSGSIZE;
110
111 nla_nest_end(skb, exts);
112 }
113
114 return 0;
115}
116
117static void vxlan_tnl_destroy(struct vport *vport)
118{
119 struct vxlan_port *vxlan_port = vxlan_vport(vport);
120
121 vxlan_sock_release(vxlan_port->vs);
122
123 ovs_vport_deferred_free(vport);
124}
125
126static const struct nla_policy exts_policy[OVS_VXLAN_EXT_MAX+1] = {
127 [OVS_VXLAN_EXT_GBP] = { .type = NLA_FLAG, },
128};
129
130static int vxlan_configure_exts(struct vport *vport, struct nlattr *attr)
131{
132 struct nlattr *exts[OVS_VXLAN_EXT_MAX+1];
133 struct vxlan_port *vxlan_port;
134 int err;
135
136 if (nla_len(attr) < sizeof(struct nlattr))
137 return -EINVAL;
138
139 err = nla_parse_nested(exts, OVS_VXLAN_EXT_MAX, attr, exts_policy);
140 if (err < 0)
141 return err;
142
143 vxlan_port = vxlan_vport(vport);
144
145 if (exts[OVS_VXLAN_EXT_GBP])
146 vxlan_port->exts |= VXLAN_F_GBP;
147
148 return 0;
149}
150
151static struct vport *vxlan_tnl_create(const struct vport_parms *parms)
152{
153 struct net *net = ovs_dp_get_net(parms->dp);
154 struct nlattr *options = parms->options;
155 struct vxlan_port *vxlan_port;
156 struct vxlan_sock *vs;
157 struct vport *vport;
158 struct nlattr *a;
159 u16 dst_port;
160 int err;
161
162 if (!options) {
163 err = -EINVAL;
164 goto error;
165 }
166 a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT);
167 if (a && nla_len(a) == sizeof(u16)) {
168 dst_port = nla_get_u16(a);
169 } else {
170 /* Require destination port from userspace. */
171 err = -EINVAL;
172 goto error;
173 }
174
175 vport = ovs_vport_alloc(sizeof(struct vxlan_port),
176 &ovs_vxlan_vport_ops, parms);
177 if (IS_ERR(vport))
178 return vport;
179
180 vxlan_port = vxlan_vport(vport);
181 strncpy(vxlan_port->name, parms->name, IFNAMSIZ);
182
183 a = nla_find_nested(options, OVS_TUNNEL_ATTR_EXTENSION);
184 if (a) {
185 err = vxlan_configure_exts(vport, a);
186 if (err) {
187 ovs_vport_free(vport);
188 goto error;
189 }
190 }
191
192 vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true,
193 vxlan_port->exts);
194 if (IS_ERR(vs)) {
195 ovs_vport_free(vport);
196 return (void *)vs;
197 }
198 vxlan_port->vs = vs;
199
200 return vport;
201
202error:
203 return ERR_PTR(err);
204}
205
206static int vxlan_ext_gbp(struct sk_buff *skb)
207{
208 const struct ip_tunnel_info *tun_info;
209 const struct ovs_vxlan_opts *opts;
210
211 tun_info = OVS_CB(skb)->egress_tun_info;
212 opts = tun_info->options;
213
214 if (tun_info->key.tun_flags & TUNNEL_VXLAN_OPT &&
215 tun_info->options_len >= sizeof(*opts))
216 return opts->gbp;
217 else
218 return 0;
219}
220
221static int vxlan_tnl_send(struct vport *vport, struct sk_buff *skb)
222{
223 struct net *net = ovs_dp_get_net(vport->dp);
224 struct vxlan_port *vxlan_port = vxlan_vport(vport);
225 struct sock *sk = vxlan_port->vs->sock->sk;
226 __be16 dst_port = inet_sk(sk)->inet_sport;
227 const struct ip_tunnel_key *tun_key;
228 struct vxlan_metadata md = {0};
229 struct rtable *rt;
230 struct flowi4 fl;
231 __be16 src_port;
232 __be16 df;
233 int err;
234 u32 vxflags;
235
236 if (unlikely(!OVS_CB(skb)->egress_tun_info)) {
237 err = -EINVAL;
238 goto error;
239 }
240
241 tun_key = &OVS_CB(skb)->egress_tun_info->key;
242 rt = ovs_tunnel_route_lookup(net, tun_key, skb->mark, &fl, IPPROTO_UDP);
243 if (IS_ERR(rt)) {
244 err = PTR_ERR(rt);
245 goto error;
246 }
247
248 df = tun_key->tun_flags & TUNNEL_DONT_FRAGMENT ?
249 htons(IP_DF) : 0;
250
251 skb->ignore_df = 1;
252
253 src_port = udp_flow_src_port(net, skb, 0, 0, true);
254 md.vni = htonl(be64_to_cpu(tun_key->tun_id) << 8);
255 md.gbp = vxlan_ext_gbp(skb);
256 vxflags = vxlan_port->exts |
257 (tun_key->tun_flags & TUNNEL_CSUM ? VXLAN_F_UDP_CSUM : 0);
258
259 err = vxlan_xmit_skb(rt, sk, skb, fl.saddr, tun_key->ipv4_dst,
260 tun_key->ipv4_tos, tun_key->ipv4_ttl, df,
261 src_port, dst_port,
262 &md, false, vxflags);
263 if (err < 0)
264 ip_rt_put(rt);
265 return err;
266error:
267 kfree_skb(skb);
268 return err;
269}
270
271static int vxlan_get_egress_tun_info(struct vport *vport, struct sk_buff *skb,
272 struct ip_tunnel_info *egress_tun_info)
273{
274 struct net *net = ovs_dp_get_net(vport->dp);
275 struct vxlan_port *vxlan_port = vxlan_vport(vport);
276 __be16 dst_port = inet_sk(vxlan_port->vs->sock->sk)->inet_sport;
277 __be16 src_port;
278 int port_min;
279 int port_max;
280
281 inet_get_local_port_range(net, &port_min, &port_max);
282 src_port = udp_flow_src_port(net, skb, 0, 0, true);
283
284 return ovs_tunnel_get_egress_info(egress_tun_info, net,
285 OVS_CB(skb)->egress_tun_info,
286 IPPROTO_UDP, skb->mark,
287 src_port, dst_port);
288}
289
290static const char *vxlan_get_name(const struct vport *vport)
291{
292 struct vxlan_port *vxlan_port = vxlan_vport(vport);
293 return vxlan_port->name;
294}
295
296static struct vport_ops ovs_vxlan_vport_ops = {
297 .type = OVS_VPORT_TYPE_VXLAN,
298 .create = vxlan_tnl_create,
299 .destroy = vxlan_tnl_destroy,
300 .get_name = vxlan_get_name,
301 .get_options = vxlan_get_options,
302 .send = vxlan_tnl_send,
303 .get_egress_tun_info = vxlan_get_egress_tun_info,
304 .owner = THIS_MODULE,
305};
306
307static int __init ovs_vxlan_tnl_init(void)
308{
309 return ovs_vport_ops_register(&ovs_vxlan_vport_ops);
310}
311
312static void __exit ovs_vxlan_tnl_exit(void)
313{
314 ovs_vport_ops_unregister(&ovs_vxlan_vport_ops);
315}
316
317module_init(ovs_vxlan_tnl_init);
318module_exit(ovs_vxlan_tnl_exit);
319
320MODULE_DESCRIPTION("OVS: VXLAN switching port");
321MODULE_LICENSE("GPL");
322MODULE_ALIAS("vport-type-4");
diff --git a/net/openvswitch/vport-vxlan.h b/net/openvswitch/vport-vxlan.h
deleted file mode 100644
index 4b08233e73d5..000000000000
--- a/net/openvswitch/vport-vxlan.h
+++ /dev/null
@@ -1,11 +0,0 @@
1#ifndef VPORT_VXLAN_H
2#define VPORT_VXLAN_H 1
3
4#include <linux/kernel.h>
5#include <linux/types.h>
6
7struct ovs_vxlan_opts {
8 __u32 gbp;
9};
10
11#endif