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