From: Eric Dumazet Date: Fri, 8 May 2020 14:34:14 +0000 (-0700) Subject: ipv6: use DST_NOCOUNT in ip6_rt_pcpu_alloc() X-Git-Tag: Ubuntu-5.13.0-19.19~5898^2~245 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d8882935fcae28bceb5f6f56f09cded8d36d85e6;p=mirror_ubuntu-jammy-kernel.git ipv6: use DST_NOCOUNT in ip6_rt_pcpu_alloc() We currently have to adjust ipv6 route gc_thresh/max_size depending on number of cpus on a server, this makes very little sense. If the kernels sets /proc/sys/net/ipv6/route/gc_thresh to 1024 and /proc/sys/net/ipv6/route/max_size to 4096, then we better not track the percpu dst that our implementation uses. Only routes not added (directly or indirectly) by the admin should be tracked and limited. Signed-off-by: Eric Dumazet Cc: Martin KaFai Lau Cc: David Ahern Cc: Maciej Żenczykowski Acked-by: Wei Wang Signed-off-by: Jakub Kicinski --- diff --git a/net/ipv6/route.c b/net/ipv6/route.c index a9072dba00f4..4292653af533 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -1377,7 +1377,7 @@ static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res) rcu_read_lock(); dev = ip6_rt_get_dev_rcu(res); - pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags); + pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags | DST_NOCOUNT); rcu_read_unlock(); if (!pcpu_rt) { fib6_info_release(f6i);