diff options
author | Johannes Weiner <hannes@cmpxchg.org> | 2016-01-14 18:21:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-14 19:00:49 -0500 |
commit | ef12947c9c5a96af549c49f10e5503f0612a397c (patch) | |
tree | 451cedbe700b86411cc95c7bf27b02e967ff0fc9 /net | |
parent | 8e8ae645249b85c8ed6c178557f8db8613a6bcc7 (diff) |
mm: memcontrol: switch to the updated jump-label API
According to <linux/jump_label.h> the direct use of struct static_key is
deprecated. Update the socket and slab accounting code accordingly.
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Acked-by: David S. Miller <davem@davemloft.net>
Reported-by: Jason Baron <jbaron@akamai.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/tcp_memcontrol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_memcontrol.c b/net/ipv4/tcp_memcontrol.c index 9a22e2dfd64a..18bc7f745e9c 100644 --- a/net/ipv4/tcp_memcontrol.c +++ b/net/ipv4/tcp_memcontrol.c | |||
@@ -34,7 +34,7 @@ void tcp_destroy_cgroup(struct mem_cgroup *memcg) | |||
34 | return; | 34 | return; |
35 | 35 | ||
36 | if (memcg->tcp_mem.active) | 36 | if (memcg->tcp_mem.active) |
37 | static_key_slow_dec(&memcg_sockets_enabled_key); | 37 | static_branch_dec(&memcg_sockets_enabled_key); |
38 | } | 38 | } |
39 | 39 | ||
40 | static int tcp_update_limit(struct mem_cgroup *memcg, unsigned long nr_pages) | 40 | static int tcp_update_limit(struct mem_cgroup *memcg, unsigned long nr_pages) |
@@ -65,7 +65,7 @@ static int tcp_update_limit(struct mem_cgroup *memcg, unsigned long nr_pages) | |||
65 | * because when this value change, the code to process it is not | 65 | * because when this value change, the code to process it is not |
66 | * patched in yet. | 66 | * patched in yet. |
67 | */ | 67 | */ |
68 | static_key_slow_inc(&memcg_sockets_enabled_key); | 68 | static_branch_inc(&memcg_sockets_enabled_key); |
69 | memcg->tcp_mem.active = true; | 69 | memcg->tcp_mem.active = true; |
70 | } | 70 | } |
71 | 71 | ||