]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/batman-adv/bridge_loop_avoidance.h
tracing: Kill trace_create_file_ops() and friends
[mirror_ubuntu-bionic-kernel.git] / net / batman-adv / bridge_loop_avoidance.h
CommitLineData
0b873931 1/* Copyright (C) 2011-2013 B.A.T.M.A.N. contributors:
23721387
SW
2 *
3 * Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
23721387
SW
18 */
19
20#ifndef _NET_BATMAN_ADV_BLA_H_
21#define _NET_BATMAN_ADV_BLA_H_
22
7a5cc242 23#ifdef CONFIG_BATMAN_ADV_BLA
eb2deb6b
AQ
24int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb,
25 unsigned short vid, bool is_bcast);
26int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb,
27 unsigned short vid);
08adf151 28int batadv_bla_is_backbone_gw(struct sk_buff *skb,
56303d34 29 struct batadv_orig_node *orig_node, int hdr_size);
08adf151 30int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
536a23f1
SW
31int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
32 void *offset);
56303d34
SE
33int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig);
34int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
004e86fc 35 struct sk_buff *skb);
56303d34
SE
36void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
37 struct batadv_hard_iface *primary_if,
38 struct batadv_hard_iface *oldif);
39int batadv_bla_init(struct batadv_priv *bat_priv);
40void batadv_bla_free(struct batadv_priv *bat_priv);
23721387 41
3964f728 42#define BATADV_BLA_CRC_INIT 0
7a5cc242
SW
43#else /* ifdef CONFIG_BATMAN_ADV_BLA */
44
56303d34 45static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
eb2deb6b
AQ
46 struct sk_buff *skb, unsigned short vid,
47 bool is_bcast)
7a5cc242
SW
48{
49 return 0;
50}
51
56303d34 52static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
eb2deb6b 53 struct sk_buff *skb, unsigned short vid)
7a5cc242
SW
54{
55 return 0;
56}
57
08adf151 58static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
56303d34 59 struct batadv_orig_node *orig_node,
08adf151 60 int hdr_size)
7a5cc242
SW
61{
62 return 0;
63}
64
08adf151
SE
65static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
66 void *offset)
7a5cc242
SW
67{
68 return 0;
69}
70
536a23f1
SW
71static inline int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
72 void *offset)
73{
74 return 0;
75}
76
56303d34 77static inline int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
08adf151 78 uint8_t *orig)
7a5cc242
SW
79{
80 return 0;
81}
82
08adf151 83static inline int
56303d34 84batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
004e86fc 85 struct sk_buff *skb)
7a5cc242
SW
86{
87 return 0;
88}
89
08adf151 90static inline void
56303d34
SE
91batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
92 struct batadv_hard_iface *primary_if,
93 struct batadv_hard_iface *oldif)
7a5cc242
SW
94{
95}
96
56303d34 97static inline int batadv_bla_init(struct batadv_priv *bat_priv)
7a5cc242
SW
98{
99 return 1;
100}
101
56303d34 102static inline void batadv_bla_free(struct batadv_priv *bat_priv)
7a5cc242
SW
103{
104}
105
106#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
23721387
SW
107
108#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */