diff options
author | Linus Lüssing <linus.luessing@web.de> | 2011-01-25 16:56:16 -0500 |
---|---|---|
committer | Sven Eckelmann <sven@narfation.org> | 2011-01-25 17:58:33 -0500 |
commit | dd58ddc6928f711d8fb7101182215a0f23cf41f1 (patch) | |
tree | 7c5707c51d817e27e795bb77c5da9fe0c2fbc345 | |
parent | aa0adb1a85e159cf57f0e11282bc6c9e3606a5f3 (diff) |
batman-adv: Fix kernel panic when fetching vis data on a vis server
The hash_iterate removal introduced a bug leading to a kernel panic when
fetching the vis data on a vis server. That commit forgot to rename one
variable name, which this commit fixes now.
Reported-by: Russell Senior <russell@personaltelco.net>
Signed-off-by: Linus Lüssing <linus.luessing@web.de>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
-rw-r--r-- | net/batman-adv/vis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/vis.c b/net/batman-adv/vis.c index cd4c4231fa48..f69a3748f8ae 100644 --- a/net/batman-adv/vis.c +++ b/net/batman-adv/vis.c | |||
@@ -268,10 +268,10 @@ int vis_seq_print_text(struct seq_file *seq, void *offset) | |||
268 | buff_pos += sprintf(buff + buff_pos, "%pM,", | 268 | buff_pos += sprintf(buff + buff_pos, "%pM,", |
269 | entry->addr); | 269 | entry->addr); |
270 | 270 | ||
271 | for (i = 0; i < packet->entries; i++) | 271 | for (j = 0; j < packet->entries; j++) |
272 | buff_pos += vis_data_read_entry( | 272 | buff_pos += vis_data_read_entry( |
273 | buff + buff_pos, | 273 | buff + buff_pos, |
274 | &entries[i], | 274 | &entries[j], |
275 | entry->addr, | 275 | entry->addr, |
276 | entry->primary); | 276 | entry->primary); |
277 | 277 | ||