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