aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShan Wei <davidshan@tencent.com>2012-04-18 18:05:46 +0000
committerDavid S. Miller <davem@davemloft.net>2012-04-19 00:11:39 -0400
commit7426a5645f3d18daec1f7d6a24b529ec7286b800 (patch)
tree77abfbb9413d9e18a7592fd5890f76c7189dc9d6
parentatl1c: restore max-read-request-size in Device Conrol Register (diff)
downloadlinux-dev-7426a5645f3d18daec1f7d6a24b529ec7286b800.tar.xz
linux-dev-7426a5645f3d18daec1f7d6a24b529ec7286b800.zip
net: fix compile error of leaking kmemleak.h header
net/core/sysctl_net_core.c: In function ‘sysctl_core_init’: net/core/sysctl_net_core.c:259: error: implicit declaration of function ‘kmemleak_not_leak’ with same error in net/ipv4/route.c Signed-off-by: Shan Wei <davidshan@tencent.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/sysctl_net_core.c1
-rw-r--r--net/ipv4/route.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c
index cee599190261..247c69b7cfc2 100644
--- a/net/core/sysctl_net_core.c
+++ b/net/core/sysctl_net_core.c
@@ -14,6 +14,7 @@
#include <linux/vmalloc.h>
#include <linux/init.h>
#include <linux/slab.h>
+#include <linux/kmemleak.h>
#include <net/ip.h>
#include <net/sock.h>
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index bcd4744e0e4e..a1c115d750e9 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -109,6 +109,7 @@
#include <net/rtnetlink.h>
#ifdef CONFIG_SYSCTL
#include <linux/sysctl.h>
+#include <linux/kmemleak.h>
#endif
#include <net/secure_seq.h>