]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: Fix build with INET disabled.
authorDavid S. Miller <davem@davemloft.net>
Mon, 9 Jan 2012 21:44:23 +0000 (13:44 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Jan 2012 21:44:23 +0000 (13:44 -0800)
> net/core/sock.c: In function 'sk_update_clone':
> net/core/sock.c:1278:3: error: implicit declaration of function 'sock_update_memcg'

Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/memcontrol.h
net/core/sock.c

index 9b296ea41bb85a5543c915dad41748c59fdd1734..f944591765eba3be0904bc820c4063c3c73183fd 100644 (file)
@@ -390,7 +390,6 @@ enum {
        OVER_LIMIT,
 };
 
-#ifdef CONFIG_INET
 struct sock;
 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
 void sock_update_memcg(struct sock *sk);
@@ -403,6 +402,5 @@ static inline void sock_release_memcg(struct sock *sk)
 {
 }
 #endif /* CONFIG_CGROUP_MEM_RES_CTLR_KMEM */
-#endif /* CONFIG_INET */
 #endif /* _LINUX_MEMCONTROL_H */
 
index c3ae73de023993c2a2ce94b1d8bbde1af99617ba..5c5af9988f941c9ee4eef4769127d3ce21f2f8cd 100644 (file)
 #include <linux/highmem.h>
 #include <linux/user_namespace.h>
 #include <linux/jump_label.h>
+#include <linux/memcontrol.h>
 
 #include <asm/uaccess.h>
 #include <asm/system.h>