diff options
author | Sven Eckelmann <sven@narfation.org> | 2016-05-15 05:07:44 -0400 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2016-06-30 04:29:43 -0400 |
commit | 01d350d14712d1e8dbf2b00c82d2fc7c48d34e04 (patch) | |
tree | 0d96722cd01fd8a955d378d8f0464ee12253f957 /net/batman-adv/routing.c | |
parent | 1f8dce4992d03fc15cfbaf67cd09f0d1648c4606 (diff) |
batman-adv: move bat_algo functions into a separate file
The bat_algo functionality in main.c is mostly unrelated to the rest of the
content. It still takes up a large portion of this source file (~15%, 103
lines). Moving it to a separate file makes it better visible as a main
component of the batman-adv implementation and hides it less in the other
helper functions in main.c.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv/routing.c')
-rw-r--r-- | net/batman-adv/routing.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c index 8cb459a57219..b9c7325ea0aa 100644 --- a/net/batman-adv/routing.c +++ b/net/batman-adv/routing.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <linux/spinlock.h> | 34 | #include <linux/spinlock.h> |
35 | #include <linux/stddef.h> | 35 | #include <linux/stddef.h> |
36 | 36 | ||
37 | #include "bat_algo.h" | ||
37 | #include "bitarray.h" | 38 | #include "bitarray.h" |
38 | #include "bridge_loop_avoidance.h" | 39 | #include "bridge_loop_avoidance.h" |
39 | #include "distributed-arp-table.h" | 40 | #include "distributed-arp-table.h" |