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