* [PATCH] sock: Remove the global prot_inuse counter.
@ 2017-11-09 8:03 Tonghao Zhang
2017-11-11 10:18 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Tonghao Zhang @ 2017-11-09 8:03 UTC (permalink / raw)
To: netdev; +Cc: Tonghao Zhang, Pavel Emelyanov
The per-cpu counter for init_net is prepared in core_initcall.
The patch 7d720c3e ("percpu: add __percpu sparse annotations to net")
and d6d9ca0fe ("net: this_cpu_xxx conversions") optimize the
routines. Then remove the old counter.
Cc: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: Tonghao Zhang <zhangtonghao@didichuxing.com>
---
net/core/sock.c | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/net/core/sock.c b/net/core/sock.c
index 7594000..03e1b1e 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -3042,7 +3042,6 @@ struct prot_inuse {
static DECLARE_BITMAP(proto_inuse_idx, PROTO_INUSE_NR);
-#ifdef CONFIG_NET_NS
void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
{
__this_cpu_add(net->core.inuse->val[prot->inuse_idx], val);
@@ -3086,27 +3085,6 @@ static __init int net_inuse_init(void)
}
core_initcall(net_inuse_init);
-#else
-static DEFINE_PER_CPU(struct prot_inuse, prot_inuse);
-
-void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
-{
- __this_cpu_add(prot_inuse.val[prot->inuse_idx], val);
-}
-EXPORT_SYMBOL_GPL(sock_prot_inuse_add);
-
-int sock_prot_inuse_get(struct net *net, struct proto *prot)
-{
- int cpu, idx = prot->inuse_idx;
- int res = 0;
-
- for_each_possible_cpu(cpu)
- res += per_cpu(prot_inuse, cpu).val[idx];
-
- return res >= 0 ? res : 0;
-}
-EXPORT_SYMBOL_GPL(sock_prot_inuse_get);
-#endif
static void assign_proto_idx(struct proto *prot)
{
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] sock: Remove the global prot_inuse counter.
2017-11-09 8:03 [PATCH] sock: Remove the global prot_inuse counter Tonghao Zhang
@ 2017-11-11 10:18 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2017-11-11 10:18 UTC (permalink / raw)
To: xiangxia.m.yue; +Cc: netdev, zhangtonghao, xemul
From: Tonghao Zhang <xiangxia.m.yue@gmail.com>
Date: Thu, 9 Nov 2017 00:03:15 -0800
> The per-cpu counter for init_net is prepared in core_initcall.
> The patch 7d720c3e ("percpu: add __percpu sparse annotations to net")
> and d6d9ca0fe ("net: this_cpu_xxx conversions") optimize the
> routines. Then remove the old counter.
>
> Cc: Pavel Emelyanov <xemul@openvz.org>
> Signed-off-by: Tonghao Zhang <zhangtonghao@didichuxing.com>
Yeah, why did we keep this global counter around :-)
Applied to net-next, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-11-11 10:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-09 8:03 [PATCH] sock: Remove the global prot_inuse counter Tonghao Zhang
2017-11-11 10:18 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).