2013-01-04 02:05:31 +00:00
|
|
|
/* Copyright (C) 2010-2013 B.A.T.M.A.N. contributors:
|
2010-12-13 11:19:28 +00:00
|
|
|
*
|
|
|
|
* Marek Lindner
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
|
|
* License as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2013-11-03 19:40:48 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-12-13 11:19:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_DEBUGFS_H_
|
|
|
|
#define _NET_BATMAN_ADV_DEBUGFS_H_
|
|
|
|
|
2012-06-03 20:19:08 +00:00
|
|
|
#define BATADV_DEBUGFS_SUBDIR "batman_adv"
|
2010-12-13 11:19:28 +00:00
|
|
|
|
2012-05-12 00:09:23 +00:00
|
|
|
void batadv_debugfs_init(void);
|
|
|
|
void batadv_debugfs_destroy(void);
|
|
|
|
int batadv_debugfs_add_meshif(struct net_device *dev);
|
|
|
|
void batadv_debugfs_del_meshif(struct net_device *dev);
|
2013-11-21 13:16:12 +00:00
|
|
|
int batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface);
|
|
|
|
void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface);
|
2010-12-13 11:19:28 +00:00
|
|
|
|
|
|
|
#endif /* _NET_BATMAN_ADV_DEBUGFS_H_ */
|