tcp_memcontrol: Kill struct tcp_memcontrol
Replace the pointers in struct cg_proto with actual data fields and kill struct tcp_memcontrol as it is not fully redundant. This removes a confusing, unnecessary layer of abstraction. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
a4fe34bf90
commit
2e685cad57
@@ -311,7 +311,7 @@ struct mem_cgroup {
|
||||
|
||||
atomic_t dead_count;
|
||||
#if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
|
||||
struct tcp_memcontrol tcp_mem;
|
||||
struct cg_proto tcp_mem;
|
||||
#endif
|
||||
#if defined(CONFIG_MEMCG_KMEM)
|
||||
/* analogous to slab_common's slab_caches list. per-memcg */
|
||||
@@ -550,13 +550,13 @@ struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg)
|
||||
if (!memcg || mem_cgroup_is_root(memcg))
|
||||
return NULL;
|
||||
|
||||
return &memcg->tcp_mem.cg_proto;
|
||||
return &memcg->tcp_mem;
|
||||
}
|
||||
EXPORT_SYMBOL(tcp_proto_cgroup);
|
||||
|
||||
static void disarm_sock_keys(struct mem_cgroup *memcg)
|
||||
{
|
||||
if (!memcg_proto_activated(&memcg->tcp_mem.cg_proto))
|
||||
if (!memcg_proto_activated(&memcg->tcp_mem))
|
||||
return;
|
||||
static_key_slow_dec(&memcg_socket_limit_enabled);
|
||||
}
|
||||
|
Reference in New Issue
Block a user