mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
aff6f5a68b
The debugfs support in batman-adv was marked as deprecated by the commit
00caf6a2b3
("batman-adv: Mark debugfs functionality as deprecated") and
scheduled for removal in 2021.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
25 lines
724 B
C
25 lines
724 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2011-2020 B.A.T.M.A.N. contributors:
|
|
*
|
|
* Marek Lindner, Linus Lüssing
|
|
*/
|
|
|
|
#ifndef _NET_BATMAN_ADV_BAT_ALGO_H_
|
|
#define _NET_BATMAN_ADV_BAT_ALGO_H_
|
|
|
|
#include "main.h"
|
|
|
|
#include <linux/netlink.h>
|
|
#include <linux/skbuff.h>
|
|
#include <linux/types.h>
|
|
|
|
extern char batadv_routing_algo[];
|
|
extern struct list_head batadv_hardif_list;
|
|
|
|
void batadv_algo_init(void);
|
|
struct batadv_algo_ops *batadv_algo_get(const char *name);
|
|
int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops);
|
|
int batadv_algo_select(struct batadv_priv *bat_priv, const char *name);
|
|
int batadv_algo_dump(struct sk_buff *msg, struct netlink_callback *cb);
|
|
|
|
#endif /* _NET_BATMAN_ADV_BAT_ALGO_H_ */
|