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