[04/10] batman-adv: netlink: add translation table query
Commit Message
On Thursday 28 April 2016 22:37:22 Andrew Lunn wrote:
> From: Matthias Schiffer <mschiffer@universe-factory.net>
>
> This adds the commands BATADV_CMD_GET_TRANSTABLE_LOCAL and
> BATADV_CMD_GET_TRANSTABLE_GLOBAL, which correspond to the transtable_local
> and transtable_global debugfs files.
>
> The batadv_tt_client_flags enum is moved to the UAPI to expose it as part
> of the netlink API.
>
> Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
> ---
> include/uapi/linux/batman_adv.h | 47 ++++++
> net/batman-adv/netlink.c | 12 ++
> net/batman-adv/packet.h | 36 -----
> net/batman-adv/translation-table.c | 305
> +++++++++++++++++++++++++++++++++++++ net/batman-adv/translation-table.h |
> 2 +
> 5 files changed, 366 insertions(+), 36 deletions(-)
You can find the missing includes in the attached patch
Kind regards,
Sven
From: Sven Eckelmann <sven@narfation.org>
Date: Fri, 29 Apr 2016 20:47:26 +0200
Subject: [PATCH] missing includes 4
---
net/batman-adv/netlink.c | 1 +
net/batman-adv/translation-table.c | 5 ++++-
net/batman-adv/translation-table.h | 2 ++
3 files changed, 7 insertions(+), 1 deletion(-)
@@ -35,6 +35,7 @@
#include "hard-interface.h"
#include "soft-interface.h"
+#include "translation-table.h"
struct genl_family batadv_netlink_family = {
.id = GENL_ID_GENERATE,
@@ -35,15 +35,18 @@
#include <linux/list.h>
#include <linux/lockdep.h>
#include <linux/netdevice.h>
+#include <linux/netlink.h>
#include <linux/rculist.h>
#include <linux/rcupdate.h>
#include <linux/seq_file.h>
+#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/stddef.h>
#include <linux/string.h>
#include <linux/workqueue.h>
-#include <net/net_namespace.h>
+#include <net/genetlink.h>
+#include <net/netlink.h>
#include <net/sock.h>
#include <uapi/linux/batman_adv.h>
@@ -23,7 +23,9 @@
#include <linux/types.h>
struct net_device;
+struct netlink_callback;
struct seq_file;
+struct sk_buff;
int batadv_tt_init(struct batadv_priv *bat_priv);
bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,