2019-05-29 07:12:43 -07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2011-10-25 19:26:31 -07:00
|
|
|
/*
|
2012-05-03 18:55:23 -07:00
|
|
|
* Copyright (c) 2007-2011 Nicira, Inc.
|
2011-10-25 19:26:31 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VPORT_NETDEV_H
|
|
|
|
#define VPORT_NETDEV_H 1
|
|
|
|
|
|
|
|
#include <linux/netdevice.h>
|
2012-11-28 14:01:52 -08:00
|
|
|
#include <linux/rcupdate.h>
|
2011-10-25 19:26:31 -07:00
|
|
|
|
|
|
|
#include "vport.h"
|
|
|
|
|
|
|
|
struct vport *ovs_netdev_get_vport(struct net_device *dev);
|
|
|
|
|
2015-07-29 13:52:06 +02:00
|
|
|
struct vport *ovs_netdev_link(struct vport *vport, const char *name);
|
2013-10-15 14:54:11 -07:00
|
|
|
void ovs_netdev_detach_dev(struct vport *);
|
2011-10-25 19:26:31 -07:00
|
|
|
|
2014-10-22 17:29:06 +02:00
|
|
|
int __init ovs_netdev_init(void);
|
|
|
|
void ovs_netdev_exit(void);
|
|
|
|
|
2015-08-07 23:51:33 -07:00
|
|
|
void ovs_netdev_tunnel_destroy(struct vport *vport);
|
2011-10-25 19:26:31 -07:00
|
|
|
#endif /* vport_netdev.h */
|