diff options
author | Johannes Weiner | 2016-01-15 00:21:05 +0100 |
---|---|---|
committer | Linus Torvalds | 2016-01-15 01:00:49 +0100 |
commit | 3d596f7b907b0281b997cf30c92994a71ad0a1a9 (patch) | |
tree | c039825abb7b78cc1cbe3d06e2a2fe481f81f3af /include/linux | |
parent | net: tcp_memcontrol: remove bogus hierarchy pressure propagation (diff) | |
download | kernel-qcow2-linux-3d596f7b907b0281b997cf30c92994a71ad0a1a9.tar.gz kernel-qcow2-linux-3d596f7b907b0281b997cf30c92994a71ad0a1a9.tar.xz kernel-qcow2-linux-3d596f7b907b0281b997cf30c92994a71ad0a1a9.zip |
net: tcp_memcontrol: protect all tcp_memcontrol calls by jump-label
Move the jump-label from sock_update_memcg() and sock_release_memcg() to
the callsite, and so eliminate those function calls when socket
accounting is not enabled.
This also eliminates the need for dummy functions because the calls will
be optimized away if the Kconfig options are not enabled.
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Acked-by: David S. Miller <davem@davemloft.net>
Reviewed-by: Vladimir Davydov <vdavydov@virtuozzo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/memcontrol.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index d0c724f53691..85c437b0cbc0 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h @@ -694,17 +694,8 @@ static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb, #endif /* CONFIG_CGROUP_WRITEBACK */ struct sock; -#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM) void sock_update_memcg(struct sock *sk); void sock_release_memcg(struct sock *sk); -#else -static inline void sock_update_memcg(struct sock *sk) -{ -} -static inline void sock_release_memcg(struct sock *sk) -{ -} -#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */ #ifdef CONFIG_MEMCG_KMEM extern struct static_key memcg_kmem_enabled_key; |