Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 314706
b: refs/heads/master
c: 3964f72
h: refs/heads/master
v: v3
  • Loading branch information
Sven Eckelmann authored and Antonio Quartulli committed Jun 28, 2012
1 parent 6756c9b commit c953424
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 036cbfeb6e0595d7b85f14dd66e38adfa408e2ef
refs/heads/master: 3964f7285eba48b971b11dc51ba0a6e41cb995b3
4 changes: 2 additions & 2 deletions trunk/net/batman-adv/bridge_loop_avoidance.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void batadv_bla_del_backbone_claims(struct backbone_gw *backbone_gw)
}

/* all claims gone, intialize CRC */
backbone_gw->crc = BLA_CRC_INIT;
backbone_gw->crc = BATADV_BLA_CRC_INIT;
}

/* @bat_priv: the bat priv with all the soft interface information
Expand Down Expand Up @@ -375,7 +375,7 @@ static struct backbone_gw *batadv_bla_get_backbone_gw(struct bat_priv *bat_priv,

entry->vid = vid;
entry->lasttime = jiffies;
entry->crc = BLA_CRC_INIT;
entry->crc = BATADV_BLA_CRC_INIT;
entry->bat_priv = bat_priv;
atomic_set(&entry->request_sent, 0);
memcpy(entry->orig, orig, ETH_ALEN);
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/batman-adv/bridge_loop_avoidance.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void batadv_bla_update_orig_address(struct bat_priv *bat_priv,
int batadv_bla_init(struct bat_priv *bat_priv);
void batadv_bla_free(struct bat_priv *bat_priv);

#define BLA_CRC_INIT 0
#define BATADV_BLA_CRC_INIT 0
#else /* ifdef CONFIG_BATMAN_ADV_BLA */

static inline int batadv_bla_rx(struct bat_priv *bat_priv, struct sk_buff *skb,
Expand Down

0 comments on commit c953424

Please sign in to comment.