Merge changes from citrix branch into master.
[cascardo/ovs.git] / datapath / brc_sysfs.h
1 /*
2  * Copyright (c) 2009 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #ifndef BRC_SYSFS_H
10 #define BRC_SYSFS_H 1
11
12 struct datapath;
13 struct net_bridge_port;
14
15 /* brc_sysfs_dp.c */
16 int brc_sysfs_add_dp(struct datapath *dp);
17 int brc_sysfs_del_dp(struct datapath *dp);
18
19 /* brc_sysfs_if.c */
20 int brc_sysfs_add_if(struct net_bridge_port *p);
21 int brc_sysfs_del_if(struct net_bridge_port *p);
22
23 #endif /* brc_sysfs.h */
24