diff options
author | Sven Eckelmann <sven@narfation.org> | 2019-05-24 21:11:17 +0300 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2019-05-25 13:59:53 +0300 |
commit | 68a600de9afc2134aa24d0cce539b98a0acb68b1 (patch) | |
tree | c49ee22e4546b1f00daf4a4c5ca656cf500f4070 /net/batman-adv/send.h | |
parent | 47d4522dd5130361d463b47f0e9a687c4b6697c2 (diff) | |
download | linux-68a600de9afc2134aa24d0cce539b98a0acb68b1.tar.xz |
batman-adv: Use includes instead of fwdecls
While it can be slightly beneficial for the build performance to use
forward declarations instead of includes, the handling of them together
with changes in the included headers makes it unnecessary complicated and
fragile. Just replace them with actual includes since some parts (hwmon,
..) of the kernel even request avoidance of forward declarations and net/
is mostly not using them in *.c file.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv/send.h')
-rw-r--r-- | net/batman-adv/send.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/batman-adv/send.h b/net/batman-adv/send.h index 5921ee4e107c..5fc0fd1e5d08 100644 --- a/net/batman-adv/send.h +++ b/net/batman-adv/send.h @@ -10,12 +10,11 @@ #include "main.h" #include <linux/compiler.h> +#include <linux/skbuff.h> #include <linux/spinlock.h> #include <linux/types.h> #include <uapi/linux/batadv_packet.h> -struct sk_buff; - void batadv_forw_packet_free(struct batadv_forw_packet *forw_packet, bool dropped); struct batadv_forw_packet * |