aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2010-12-20 10:32:03 -0800
committerDavid S. Miller <davem@davemloft.net>2010-12-20 10:32:03 -0800
commit53320fe3bb1b1eef1aaff8dd47aae530ebeeb1e5 (patch)
treef9ac85a6dcf4ec0ee709d08b5f56f6e9c4320edf /net/batman-adv
parentpktgen: Remove unnecessary prefix from pr_<level> (diff)
downloadlinux-dev-53320fe3bb1b1eef1aaff8dd47aae530ebeeb1e5.tar.xz
linux-dev-53320fe3bb1b1eef1aaff8dd47aae530ebeeb1e5.zip
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>
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/translation-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c
index a19e16c94da5..a633b5a435e2 100644
--- a/net/batman-adv/translation-table.c
+++ b/net/batman-adv/translation-table.c
@@ -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)