Hi, so I did some more changes to ifdefery of sock kmem part. The patch is below. Glauber please have a look at it. I do not think any of the functionality wrapped inside CONFIG_MEMCG_KMEM without CONFIG_INET is reusable for generic CONFIG_MEMCG_KMEM, right? --- >From 97b51b15956a258322d117b8918b3b45f36be6e6 Mon Sep 17 00:00:00 2001 From: Michal Hocko <mhocko@xxxxxxx> Date: Tue, 11 Sep 2012 10:38:42 +0200 Subject: [PATCH] memcg: clean up networking headers file inclusion Memory controller doesn't need anything from the networking stack unless CONFIG_MEMCG_KMEM is selected. Now we are including net/sock.h and net/tcp_memcontrol.h unconditionally which is not necessary. Moreover struct mem_cgroup contains tcp_mem even if CONFIG_MEMCG_KMEM and CONFIG_INET are not selected which is not necessary. While we are at it, let's clean up KMEM sock code ifdefs to require both CONFIG_KMEM and CONFIG_INET as it doesn't make much sense to compile this code if there is no possible user for it. Tested with - CONFIG_INET && CONFIG_MEMCG_KMEM - !CONFIG_INET && CONFIG_MEMCG_KMEM - CONFIG_INET && !CONFIG_MEMCG_KMEM - !CONFIG_INET && !CONFIG_MEMCG_KMEM Changes since V1: - depend on both CONFIG_INET and CONFIG_MEMCG_KMEM for both mem_cgroup->tcp_mem and the sock specific code Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Signed-off-by: Michal Hocko <mhocko@xxxxxxx> --- mm/memcontrol.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 795e525..0cd25e9 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -50,8 +50,12 @@ #include <linux/cpu.h> #include <linux/oom.h> #include "internal.h" + +#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET) #include <net/sock.h> +#include <net/ip.h> #include <net/tcp_memcontrol.h> +#endif #include <asm/uaccess.h> @@ -326,7 +330,7 @@ struct mem_cgroup { struct mem_cgroup_stat_cpu nocpu_base; spinlock_t pcp_counter_lock; -#ifdef CONFIG_INET +#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET) struct tcp_memcontrol tcp_mem; #endif }; @@ -412,9 +416,7 @@ struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *s) } /* Writing them here to avoid exposing memcg's inner layout */ -#ifdef CONFIG_MEMCG_KMEM -#include <net/sock.h> -#include <net/ip.h> +#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM) static bool mem_cgroup_is_root(struct mem_cgroup *memcg); void sock_update_memcg(struct sock *sk) @@ -461,7 +463,6 @@ void sock_release_memcg(struct sock *sk) } } -#ifdef CONFIG_INET struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg) { if (!memcg || mem_cgroup_is_root(memcg)) @@ -470,10 +471,7 @@ struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg) return &memcg->tcp_mem.cg_proto; } EXPORT_SYMBOL(tcp_proto_cgroup); -#endif /* CONFIG_INET */ -#endif /* CONFIG_MEMCG_KMEM */ -#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM) static void disarm_sock_keys(struct mem_cgroup *memcg) { if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto)) @@ -4601,7 +4599,7 @@ static int mem_cgroup_oom_control_write(struct cgroup *cgrp, return 0; } -#ifdef CONFIG_MEMCG_KMEM +#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET) static int memcg_init_kmem(struct mem_cgroup *memcg, struct cgroup_subsys *ss) { return mem_cgroup_sockets_init(memcg, ss); -- 1.7.10.4 -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>