Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 255305
b: refs/heads/master
c: 5f718c2
h: refs/heads/master
i:
  255303: 71e1417
v: v3
  • Loading branch information
Sven Eckelmann committed May 30, 2011
1 parent d4b4dfd commit ef18d0a
Show file tree
Hide file tree
Showing 4 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: 37a4065ec79dcf172c44cb2741c1b9983ecfc492
refs/heads/master: 5f718c20076f4b47c3dc0f1277aef9966928089c
2 changes: 1 addition & 1 deletion trunk/net/batman-adv/bitarray.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static void bit_reset_window(unsigned long *seq_bits)
char bit_get_packet(void *priv, unsigned long *seq_bits,
int32_t seq_num_diff, int8_t set_mark)
{
struct bat_priv *bat_priv = (struct bat_priv *)priv;
struct bat_priv *bat_priv = priv;

/* sequence number is slightly older. We already got a sequence number
* higher than this one, so we just mark it. */
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/batman-adv/hard-interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ void hardif_remove_interfaces(void)
static int hard_if_event(struct notifier_block *this,
unsigned long event, void *ptr)
{
struct net_device *net_dev = (struct net_device *)ptr;
struct net_device *net_dev = ptr;
struct hard_iface *hard_iface = hardif_get_by_netdev(net_dev);
struct hard_iface *primary_if = NULL;
struct bat_priv *bat_priv;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/batman-adv/translation-table.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ int tt_local_seq_print_text(struct seq_file *seq, void *offset)

static void _tt_local_del(struct hlist_node *node, void *arg)
{
struct bat_priv *bat_priv = (struct bat_priv *)arg;
struct bat_priv *bat_priv = arg;
void *data = container_of(node, struct tt_local_entry, hash_entry);

kfree(data);
Expand Down

0 comments on commit ef18d0a

Please sign in to comment.