diff options
author | Markus Pargmann <mpa@pengutronix.de> | 2016-05-15 11:07:43 +0200 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2016-06-30 10:29:43 +0200 |
commit | 1f8dce4992d03fc15cfbaf67cd09f0d1648c4606 (patch) | |
tree | 0cb7041da75c8d99d99bb727391640530885fc7f /net/batman-adv/translation-table.c | |
parent | fcafa5e74b42a182a5bcc5c7f94ca026d4e5f06e (diff) | |
download | linux-1f8dce4992d03fc15cfbaf67cd09f0d1648c4606.tar.gz linux-1f8dce4992d03fc15cfbaf67cd09f0d1648c4606.tar.bz2 linux-1f8dce4992d03fc15cfbaf67cd09f0d1648c4606.zip |
batman-adv: split tvlv into a separate file
The tvlv functionality in main.c is mostly unrelated to the rest of the
content. It still takes up a large portion of this source file (~45%, 588
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: Markus Pargmann <mpa@pengutronix.de>
[sven@narfation.org: fix conflicts with current version, fix includes,
rewrote commit message]
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/translation-table.c')
-rw-r--r-- | net/batman-adv/translation-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index 87bb2030186d..6c8d624e4581 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c @@ -51,6 +51,7 @@ #include "originator.h" #include "packet.h" #include "soft-interface.h" +#include "tvlv.h" /* hash class keys */ static struct lock_class_key batadv_tt_local_hash_lock_class_key; |