mips: reserve elfcorehdr
[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);
536a23f1
SW
30int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
31 void *offset);
56303d34
SE
32int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, uint8_t *orig);
33int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
004e86fc 34 struct sk_buff *skb);
56303d34
SE
35void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
36 struct batadv_hard_iface *primary_if,
37 struct batadv_hard_iface *oldif);
38int batadv_bla_init(struct batadv_priv *bat_priv);
39void batadv_bla_free(struct batadv_priv *bat_priv);
23721387 40
3964f728 41#define BATADV_BLA_CRC_INIT 0
7a5cc242
SW
42#else /* ifdef CONFIG_BATMAN_ADV_BLA */
43
56303d34 44static inline int batadv_bla_rx(struct batadv_priv *bat_priv,
c7043728 45 struct sk_buff *skb, short vid, 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
536a23f1
SW
69static inline int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq,
70 void *offset)
71{
72 return 0;
73}
74
56303d34 75static inline int batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv,
08adf151 76 uint8_t *orig)
7a5cc242
SW
77{
78 return 0;
79}
80
08adf151 81static inline int
56303d34 82batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
004e86fc 83 struct sk_buff *skb)
7a5cc242
SW
84{
85 return 0;
86}
87
08adf151 88static inline void
56303d34
SE
89batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
90 struct batadv_hard_iface *primary_if,
91 struct batadv_hard_iface *oldif)
7a5cc242
SW
92{
93}
94
56303d34 95static inline int batadv_bla_init(struct batadv_priv *bat_priv)
7a5cc242
SW
96{
97 return 1;
98}
99
56303d34 100static inline void batadv_bla_free(struct batadv_priv *bat_priv)
7a5cc242
SW
101{
102}
103
104#endif /* ifdef CONFIG_BATMAN_ADV_BLA */
23721387
SW
105
106#endif /* ifndef _NET_BATMAN_ADV_BLA_H_ */
This page took 0.082048 seconds and 5 git commands to generate.