From 1f68aac9d7b15013407afca581c5da09b45b9afa Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 16 Mar 2019 18:38:46 +0100 Subject: kernel: backport flow dissector batman-adv support Improves performance on multicore systems handling batman-adv traffic Signed-off-by: Felix Fietkau --- ...Let-packet.h-include-its-headers-directly.patch | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch (limited to 'target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch') diff --git a/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch b/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch new file mode 100644 index 0000000000..9b3dfc1fd3 --- /dev/null +++ b/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch @@ -0,0 +1,36 @@ +From: Sven Eckelmann +Date: Thu, 21 Dec 2017 10:17:38 +0100 +Subject: [PATCH] batman-adv: Let packet.h include its headers directly + +The headers used by packet.h should also be included by it directly. main.h +is currently dealing with it in batman-adv, but this will no longer work +when this header is moved to include/uapi/linux/. + +Signed-off-by: Sven Eckelmann +Signed-off-by: David S. Miller +--- + +--- a/net/batman-adv/main.h ++++ b/net/batman-adv/main.h +@@ -184,10 +184,8 @@ enum batadv_uev_type { + + /* Kernel headers */ + +-#include /* for packet.h */ + #include + #include +-#include /* for packet.h */ + #include + #include + #include +--- a/net/batman-adv/packet.h ++++ b/net/batman-adv/packet.h +@@ -19,6 +19,8 @@ + #define _NET_BATMAN_ADV_PACKET_H_ + + #include ++#include ++#include + #include + + #define batadv_tp_is_error(n) ((u8)(n) > 127 ? 1 : 0) -- cgit v1.2.3