diff options
author | David S. Miller <davem@davemloft.net> | 2012-01-09 22:44:23 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-09 22:44:23 +0100 |
commit | 3969eb3859e4fad4b32ca8f96d4ec8551c20704a (patch) | |
tree | 06620d8c94d92ab187f6ce8e72f2d0453d734314 /net/core | |
parent | net: introduce netif_addr_lock_nested() and call if when appropriate (diff) | |
download | linux-3969eb3859e4fad4b32ca8f96d4ec8551c20704a.tar.xz linux-3969eb3859e4fad4b32ca8f96d4ec8551c20704a.zip |
net: Fix build with INET disabled.
> 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>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/sock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index c3ae73de0239..5c5af9988f94 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -112,6 +112,7 @@ #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> |