Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2 | /* Copyright (C) 2010-2020 B.A.T.M.A.N. contributors: |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _NET_BATMAN_ADV_DEBUGFS_H_ |
| 8 | #define _NET_BATMAN_ADV_DEBUGFS_H_ |
| 9 | |
| 10 | #include "main.h" |
| 11 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 12 | #include <linux/fs.h> |
| 13 | #include <linux/netdevice.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 14 | |
| 15 | #define BATADV_DEBUGFS_SUBDIR "batman_adv" |
| 16 | |
| 17 | #if IS_ENABLED(CONFIG_BATMAN_ADV_DEBUGFS) |
| 18 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 19 | void batadv_debugfs_deprecated(struct file *file, const char *alt); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 20 | void batadv_debugfs_init(void); |
| 21 | void batadv_debugfs_destroy(void); |
| 22 | int batadv_debugfs_add_meshif(struct net_device *dev); |
| 23 | void batadv_debugfs_rename_meshif(struct net_device *dev); |
| 24 | void batadv_debugfs_del_meshif(struct net_device *dev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 25 | void batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 26 | void batadv_debugfs_rename_hardif(struct batadv_hard_iface *hard_iface); |
| 27 | void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface); |
| 28 | |
| 29 | #else |
| 30 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 31 | static inline void batadv_debugfs_deprecated(struct file *file, const char *alt) |
| 32 | { |
| 33 | } |
| 34 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 35 | static inline void batadv_debugfs_init(void) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | static inline void batadv_debugfs_destroy(void) |
| 40 | { |
| 41 | } |
| 42 | |
| 43 | static inline int batadv_debugfs_add_meshif(struct net_device *dev) |
| 44 | { |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | static inline void batadv_debugfs_rename_meshif(struct net_device *dev) |
| 49 | { |
| 50 | } |
| 51 | |
| 52 | static inline void batadv_debugfs_del_meshif(struct net_device *dev) |
| 53 | { |
| 54 | } |
| 55 | |
| 56 | static inline |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 57 | void batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 58 | { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | static inline |
| 62 | void batadv_debugfs_rename_hardif(struct batadv_hard_iface *hard_iface) |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | static inline |
| 67 | void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface) |
| 68 | { |
| 69 | } |
| 70 | |
| 71 | #endif |
| 72 | |
| 73 | #endif /* _NET_BATMAN_ADV_DEBUGFS_H_ */ |