aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2018-10-21 11:30:29 +0200
committerSimon Wunderlich <sw@simonwunderlich.de>2018-11-12 10:41:50 +0100
commita5dac4da72f59f9565af747f0e4a2d943f902240 (patch)
tree9bf5623e179d86aa5bb909eccd0f02226384a284 /net
parentbatman-adv: Drop unused lockdep include (diff)
downloadlinux-dev-a5dac4da72f59f9565af747f0e4a2d943f902240.tar.xz
linux-dev-a5dac4da72f59f9565af747f0e4a2d943f902240.zip
batman-adv: Add includes for deprecation warning
The commit 00caf6a2b318 ("batman-adv: Mark debugfs functionality as deprecated") introduced various messages to inform the user about the deprecation of the debugfs based functionality. The messages also include the context/task in which this problem was observed. The datastructures and functions to access this information require special headers. These should be included directly instead of depending on a more complex and fragile include chain. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net')
-rw-r--r--net/batman-adv/debugfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/batman-adv/debugfs.c b/net/batman-adv/debugfs.c
index 8b608a2e2653..d4a7702e48d8 100644
--- a/net/batman-adv/debugfs.c
+++ b/net/batman-adv/debugfs.c
@@ -19,6 +19,7 @@
#include "debugfs.h"
#include "main.h"
+#include <asm/current.h>
#include <linux/dcache.h>
#include <linux/debugfs.h>
#include <linux/err.h>
@@ -27,6 +28,7 @@
#include <linux/fs.h>
#include <linux/netdevice.h>
#include <linux/printk.h>
+#include <linux/sched.h>
#include <linux/seq_file.h>
#include <linux/stat.h>
#include <linux/stddef.h>