dect
/
linux-2.6
Archived
13
0
Fork 0

batman-adv: Return hna count on local buffer fill

hna_local_fill_buffer must return the number of added hna entries and
not the last checked hash bucket.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Sven Eckelmann 2010-12-20 10:32:03 -08:00 committed by David S. Miller
parent 58231186c4
commit 53320fe3bb
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ int hna_local_fill_buffer(struct bat_priv *bat_priv,
atomic_set(&bat_priv->hna_local_changed, 0);
spin_unlock_bh(&bat_priv->hna_lhash_lock);
return i;
return count;
}
int hna_local_seq_print_text(struct seq_file *seq, void *offset)