diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-10-19 16:26:19 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-21 18:43:02 -0400 |
commit | 2e685cad57906e19add7189b5ff49dfb6aaa21d3 (patch) | |
tree | d8e382e4e7e0a684284542b6aab8187e18b10a91 /include/net/tcp_memcontrol.h | |
parent | a4fe34bf902b8f709c635ab37f1f39de0b86cff2 (diff) | |
download | blackbird-op-linux-2e685cad57906e19add7189b5ff49dfb6aaa21d3.tar.gz blackbird-op-linux-2e685cad57906e19add7189b5ff49dfb6aaa21d3.zip |
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>
Diffstat (limited to 'include/net/tcp_memcontrol.h')
-rw-r--r-- | include/net/tcp_memcontrol.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/net/tcp_memcontrol.h b/include/net/tcp_memcontrol.h index af0c0680a873..05b94d9453de 100644 --- a/include/net/tcp_memcontrol.h +++ b/include/net/tcp_memcontrol.h @@ -1,16 +1,6 @@ #ifndef _TCP_MEMCG_H #define _TCP_MEMCG_H -struct tcp_memcontrol { - struct cg_proto cg_proto; - /* per-cgroup tcp memory pressure knobs */ - struct res_counter tcp_memory_allocated; - struct percpu_counter tcp_sockets_allocated; - /* those two are read-mostly, leave them at the end */ - long tcp_prot_mem[3]; - int tcp_memory_pressure; -}; - struct cg_proto *tcp_proto_cgroup(struct mem_cgroup *memcg); int tcp_init_cgroup(struct mem_cgroup *memcg, struct cgroup_subsys *ss); void tcp_destroy_cgroup(struct mem_cgroup *memcg); |