batman-adv: Prefix types structs with batadv_
[deliverable/linux.git] / net / batman-adv / bridge_loop_avoidance.h
CommitLineData
9cfc7bd6 1/* Copyright (C) 2011-2012 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
56303d34
SE
24int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid);
25int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb, short vid);
08adf151 26int batadv_bla_is_backbone_gw(struct sk_buff *skb,
56303d34 27 struct batadv_orig_node *orig_node, int hdr_size);
08adf151 28int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset);
56303d34
SE
29int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig);
30int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
96412690 31 struct batadv_bcast_packet *bcast_packet,
08adf151 32 int hdr_size);
56303d34
SE
33void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
34 struct batadv_hard_iface *primary_if,
35 struct batadv_hard_iface *oldif);
36int batadv_bla_init(struct batadv_priv *bat_priv);
37void batadv_bla_free(struct batadv_priv *bat_priv);
23721387 38
3964f728 39#define BATADV_BLA_CRC_INIT 0
7a5cc242
SW
40#else /* ifdef CONFIG_BATMAN_ADV_BLA */
41
56303d34
SE
42static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
43 struct sk_buff *skb, short vid)
7a5cc242
SW
44{
45 return 0;
46}
47
56303d34
SE
48static inline int batadv_bla_tx(struct batadv_priv *bat_priv,
49 struct sk_buff *skb, short vid)
7a5cc242
SW
50{
51 return 0;
52}
53
08adf151 54static inline int batadv_bla_is_backbone_gw(struct sk_buff *skb,
56303d34 55 struct batadv_orig_node *orig_node,
08adf151 56 int hdr_size)
7a5cc242
SW
57{
58 return 0;
59}
60
08adf151
SE
61static inline int batadv_bla_claim_table_seq_print_text(struct seq_file *seq,
62 void *offset)
7a5cc242
SW
63{
64 return 0;
65}
66
56303d34 67static inline int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
08adf151 68 uint8_t *orig)
7a5cc242
SW
69{
70 return 0;
71}
72
08adf151 73static inline int
56303d34 74batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
96412690 75 struct batadv_bcast_packet *bcast_packet,
08adf151 76 int hdr_size)
7a5cc242
SW
77{
78 return 0;
79}
80
08adf151 81static inline void
56303d34
SE
82batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
83 struct batadv_hard_iface *primary_if,
84 struct batadv_hard_iface *oldif)
7a5cc242
SW
85{
86}
87
56303d34 88static inline int batadv_bla_init(struct batadv_priv *bat_priv)
7a5cc242
SW
89{
90 return 1;
91}
92
56303d34 93static inline void batadv_bla_free(struct batadv_priv *bat_priv)
7a5cc242
SW
94{
95}
96
97#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
23721387
SW
98
99#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */
This page took 0.050891 seconds and 5 git commands to generate.