diff options
author | David S. Miller <davem@davemloft.net> | 2015-06-10 06:23:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-06-10 06:23:52 +0300 |
commit | c3eee1fb1d308564ada5f7ea57bc51efc6130b37 (patch) | |
tree | 23fbf6e55aa23a1f4d92ba1441c885571faa7905 /net/batman-adv/bridge_loop_avoidance.h | |
parent | 6651ee070b3124fe9b9db383e3a895a0e4aded65 (diff) | |
parent | 94d1dd87316fdb7a403a2750e13ec839fd2fadea (diff) | |
download | linux-c3eee1fb1d308564ada5f7ea57bc51efc6130b37.tar.xz |
Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge
Antonio Quartulli says:
====================
Included changes:
- use common Jenkins hash instead of private implementation
- extend internal routing API
- properly re-arrange header files inclusion
- clarify precedence between '&' and '?'
- remove unused ethhdr variable in batadv_gw_dhcp_recipient_get()
- ensure per-VLAN structs are updated upon MAC change
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/batman-adv/bridge_loop_avoidance.h')
-rw-r--r-- | net/batman-adv/bridge_loop_avoidance.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/batman-adv/bridge_loop_avoidance.h b/net/batman-adv/bridge_loop_avoidance.h index 1f506d34039e..0282690389ac 100644 --- a/net/batman-adv/bridge_loop_avoidance.h +++ b/net/batman-adv/bridge_loop_avoidance.h @@ -18,6 +18,16 @@ #ifndef _NET_BATMAN_ADV_BLA_H_ #define _NET_BATMAN_ADV_BLA_H_ +#include "main.h" + +#include <linux/types.h> + +struct batadv_hard_iface; +struct batadv_orig_node; +struct batadv_priv; +struct seq_file; +struct sk_buff; + #ifdef CONFIG_BATMAN_ADV_BLA int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb, unsigned short vid, bool is_bcast); |