2017-11-19 22:05:11 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2020-01-01 07:00:01 +08:00
|
|
|
/* Copyright (C) 2010-2020 B.A.T.M.A.N. contributors:
|
2010-12-13 19:19:28 +08:00
|
|
|
*
|
|
|
|
* Marek Lindner
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_DEBUGFS_H_
|
|
|
|
#define _NET_BATMAN_ADV_DEBUGFS_H_
|
|
|
|
|
2015-04-18 01:40:28 +08:00
|
|
|
#include "main.h"
|
|
|
|
|
2019-05-25 02:11:17 +08:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/netdevice.h>
|
2015-04-18 01:40:28 +08:00
|
|
|
|
2012-06-04 04:19:08 +08:00
|
|
|
#define BATADV_DEBUGFS_SUBDIR "batman_adv"
|
2010-12-13 19:19:28 +08:00
|
|
|
|
2016-07-16 15:31:20 +08:00
|
|
|
#if IS_ENABLED(CONFIG_BATMAN_ADV_DEBUGFS)
|
2014-12-26 19:41:18 +08:00
|
|
|
|
2018-08-11 05:36:15 +08:00
|
|
|
void batadv_debugfs_deprecated(struct file *file, const char *alt);
|
2012-05-12 08:09:23 +08:00
|
|
|
void batadv_debugfs_init(void);
|
|
|
|
void batadv_debugfs_destroy(void);
|
|
|
|
int batadv_debugfs_add_meshif(struct net_device *dev);
|
2018-06-02 01:24:24 +08:00
|
|
|
void batadv_debugfs_rename_meshif(struct net_device *dev);
|
2012-05-12 08:09:23 +08:00
|
|
|
void batadv_debugfs_del_meshif(struct net_device *dev);
|
2019-06-14 15:11:23 +08:00
|
|
|
void batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface);
|
2018-06-02 01:24:23 +08:00
|
|
|
void batadv_debugfs_rename_hardif(struct batadv_hard_iface *hard_iface);
|
2013-11-21 21:16:12 +08:00
|
|
|
void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface);
|
2010-12-13 19:19:28 +08:00
|
|
|
|
2014-12-26 19:41:18 +08:00
|
|
|
#else
|
|
|
|
|
2018-08-11 05:36:15 +08:00
|
|
|
static inline void batadv_debugfs_deprecated(struct file *file, const char *alt)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-26 19:41:18 +08:00
|
|
|
static inline void batadv_debugfs_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void batadv_debugfs_destroy(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int batadv_debugfs_add_meshif(struct net_device *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-02 01:24:24 +08:00
|
|
|
static inline void batadv_debugfs_rename_meshif(struct net_device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-26 19:41:18 +08:00
|
|
|
static inline void batadv_debugfs_del_meshif(struct net_device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
2019-06-14 15:11:23 +08:00
|
|
|
void batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface)
|
2014-12-26 19:41:18 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-02 01:24:23 +08:00
|
|
|
static inline
|
|
|
|
void batadv_debugfs_rename_hardif(struct batadv_hard_iface *hard_iface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-26 19:41:18 +08:00
|
|
|
static inline
|
|
|
|
void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-12-13 19:19:28 +08:00
|
|
|
#endif /* _NET_BATMAN_ADV_DEBUGFS_H_ */
|