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