2 #include <net/tcp_memcontrol.h>
5 #include <linux/nsproxy.h>
6 #include <linux/memcontrol.h>
7 #include <linux/module.h>
9 int tcp_init_cgroup(struct mem_cgroup
*memcg
, struct cgroup_subsys
*ss
)
12 * The root cgroup does not use page_counters, but rather,
13 * rely on the data already collected by the network
16 struct mem_cgroup
*parent
= parent_mem_cgroup(memcg
);
17 struct page_counter
*counter_parent
= NULL
;
18 struct cg_proto
*cg_proto
, *parent_cg
;
20 cg_proto
= tcp_prot
.proto_cgroup(memcg
);
24 cg_proto
->sysctl_mem
[0] = sysctl_tcp_mem
[0];
25 cg_proto
->sysctl_mem
[1] = sysctl_tcp_mem
[1];
26 cg_proto
->sysctl_mem
[2] = sysctl_tcp_mem
[2];
27 cg_proto
->memory_pressure
= 0;
28 cg_proto
->memcg
= memcg
;
30 parent_cg
= tcp_prot
.proto_cgroup(parent
);
32 counter_parent
= &parent_cg
->memory_allocated
;
34 page_counter_init(&cg_proto
->memory_allocated
, counter_parent
);
35 percpu_counter_init(&cg_proto
->sockets_allocated
, 0, GFP_KERNEL
);
39 EXPORT_SYMBOL(tcp_init_cgroup
);
41 void tcp_destroy_cgroup(struct mem_cgroup
*memcg
)
43 struct cg_proto
*cg_proto
;
45 cg_proto
= tcp_prot
.proto_cgroup(memcg
);
49 percpu_counter_destroy(&cg_proto
->sockets_allocated
);
51 if (test_bit(MEMCG_SOCK_ACTIVATED
, &cg_proto
->flags
))
52 static_key_slow_dec(&memcg_socket_limit_enabled
);
55 EXPORT_SYMBOL(tcp_destroy_cgroup
);
57 static int tcp_update_limit(struct mem_cgroup
*memcg
, unsigned long nr_pages
)
59 struct cg_proto
*cg_proto
;
63 cg_proto
= tcp_prot
.proto_cgroup(memcg
);
67 ret
= page_counter_limit(&cg_proto
->memory_allocated
, nr_pages
);
71 for (i
= 0; i
< 3; i
++)
72 cg_proto
->sysctl_mem
[i
] = min_t(long, nr_pages
,
75 if (nr_pages
== PAGE_COUNTER_MAX
)
76 clear_bit(MEMCG_SOCK_ACTIVE
, &cg_proto
->flags
);
79 * The active bit needs to be written after the static_key
80 * update. This is what guarantees that the socket activation
81 * function is the last one to run. See sock_update_memcg() for
82 * details, and note that we don't mark any socket as belonging
83 * to this memcg until that flag is up.
85 * We need to do this, because static_keys will span multiple
86 * sites, but we can't control their order. If we mark a socket
87 * as accounted, but the accounting functions are not patched in
88 * yet, we'll lose accounting.
90 * We never race with the readers in sock_update_memcg(),
91 * because when this value change, the code to process it is not
94 * The activated bit is used to guarantee that no two writers
95 * will do the update in the same memcg. Without that, we can't
96 * properly shutdown the static key.
98 if (!test_and_set_bit(MEMCG_SOCK_ACTIVATED
, &cg_proto
->flags
))
99 static_key_slow_inc(&memcg_socket_limit_enabled
);
100 set_bit(MEMCG_SOCK_ACTIVE
, &cg_proto
->flags
);
113 static DEFINE_MUTEX(tcp_limit_mutex
);
115 static ssize_t
tcp_cgroup_write(struct kernfs_open_file
*of
,
116 char *buf
, size_t nbytes
, loff_t off
)
118 struct mem_cgroup
*memcg
= mem_cgroup_from_css(of_css(of
));
119 unsigned long nr_pages
;
124 switch (of_cft(of
)->private) {
126 /* see memcontrol.c */
127 ret
= page_counter_memparse(buf
, "-1", &nr_pages
);
130 mutex_lock(&tcp_limit_mutex
);
131 ret
= tcp_update_limit(memcg
, nr_pages
);
132 mutex_unlock(&tcp_limit_mutex
);
138 return ret
?: nbytes
;
141 static u64
tcp_cgroup_read(struct cgroup_subsys_state
*css
, struct cftype
*cft
)
143 struct mem_cgroup
*memcg
= mem_cgroup_from_css(css
);
144 struct cg_proto
*cg_proto
= tcp_prot
.proto_cgroup(memcg
);
147 switch (cft
->private) {
150 return PAGE_COUNTER_MAX
;
151 val
= cg_proto
->memory_allocated
.limit
;
156 val
= atomic_long_read(&tcp_memory_allocated
);
158 val
= page_counter_read(&cg_proto
->memory_allocated
);
164 val
= cg_proto
->memory_allocated
.failcnt
;
169 val
= cg_proto
->memory_allocated
.watermark
;
178 static ssize_t
tcp_cgroup_reset(struct kernfs_open_file
*of
,
179 char *buf
, size_t nbytes
, loff_t off
)
181 struct mem_cgroup
*memcg
;
182 struct cg_proto
*cg_proto
;
184 memcg
= mem_cgroup_from_css(of_css(of
));
185 cg_proto
= tcp_prot
.proto_cgroup(memcg
);
189 switch (of_cft(of
)->private) {
191 page_counter_reset_watermark(&cg_proto
->memory_allocated
);
194 cg_proto
->memory_allocated
.failcnt
= 0;
201 static struct cftype tcp_files
[] = {
203 .name
= "kmem.tcp.limit_in_bytes",
204 .write
= tcp_cgroup_write
,
205 .read_u64
= tcp_cgroup_read
,
206 .private = RES_LIMIT
,
209 .name
= "kmem.tcp.usage_in_bytes",
210 .read_u64
= tcp_cgroup_read
,
211 .private = RES_USAGE
,
214 .name
= "kmem.tcp.failcnt",
215 .private = RES_FAILCNT
,
216 .write
= tcp_cgroup_reset
,
217 .read_u64
= tcp_cgroup_read
,
220 .name
= "kmem.tcp.max_usage_in_bytes",
221 .private = RES_MAX_USAGE
,
222 .write
= tcp_cgroup_reset
,
223 .read_u64
= tcp_cgroup_read
,
228 static int __init
tcp_memcontrol_init(void)
230 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys
, tcp_files
));
233 __initcall(tcp_memcontrol_init
);