* [PATCH net-next v3 1/3] ipv4: hash uncached routes by device
2026-09-17 19:38 [PATCH net-next v3 0/3] net: hash uncached route lists by device Chris J Arges
@ 2026-09-17 19:38 ` Chris J Arges
2026-09-17 19:38 ` [PATCH net-next v3 2/3] ipv6: " Chris J Arges
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Chris J Arges @ 2026-09-17 19:38 UTC (permalink / raw)
To: David Ahern, Ido Schimmel, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, Shuah Khan
Cc: netdev, linux-kernel, linux-kselftest, kernel-team, Chris J Arges
rt_flush_dev() currently walks every per-CPU uncached route list for each
device being removed. This repeatedly examines unrelated routes and makes
teardown increasingly expensive as the number of devices grows.
Replace each per-CPU list with a hash table keyed by the route's netdevice.
Keep the owning-list pointer in dst_entry so route removal remains
unchanged, while device teardown only walks the matching bucket on each
CPU. Hash collisions are filtered by the existing device comparison.
The table has 64 buckets and costs approximately 1.5 KiB per possible CPU
on x86-64.
Signed-off-by: Chris J Arges <carges@cloudflare.com>
---
net/ipv4/route.c | 36 +++++++++++++++++++++++++++++-------
1 file changed, 29 insertions(+), 7 deletions(-)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index d7da2f1acbb5..e5539eda4307 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -74,6 +74,7 @@
#include <linux/init.h>
#include <linux/skbuff.h>
#include <linux/inetdevice.h>
+#include <linux/hash.h>
#include <linux/igmp.h>
#include <linux/pkt_sched.h>
#include <linux/mroute.h>
@@ -1552,11 +1553,22 @@ struct uncached_list {
struct list_head head;
};
-static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt_uncached_list);
+#define RT_UNCACHED_HASH_BITS 6
+#define RT_UNCACHED_HASH_SIZE BIT(RT_UNCACHED_HASH_BITS)
+
+struct uncached_table {
+ struct uncached_list buckets[RT_UNCACHED_HASH_SIZE];
+};
+
+static DEFINE_PER_CPU_ALIGNED(struct uncached_table, rt_uncached_table);
void rt_add_uncached_list(struct rtable *rt)
{
- struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
+ struct uncached_table *table = raw_cpu_ptr(&rt_uncached_table);
+ struct uncached_list *ul;
+
+ ul = &table->buckets[hash_ptr(dst_dev(&rt->dst),
+ RT_UNCACHED_HASH_BITS)];
rt->dst.rt_uncached_list = ul;
@@ -1588,14 +1600,18 @@ void rt_flush_dev(struct net_device *dev)
int cpu;
for_each_possible_cpu(cpu) {
- struct uncached_list *ul = &per_cpu(rt_uncached_list, cpu);
+ struct uncached_table *table;
+ struct uncached_list *ul;
+
+ table = per_cpu_ptr(&rt_uncached_table, cpu);
+ ul = &table->buckets[hash_ptr(dev, RT_UNCACHED_HASH_BITS)];
if (list_empty(&ul->head))
continue;
spin_lock_bh(&ul->lock);
list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
- if (rt->dst.dev != dev)
+ if (dst_dev(&rt->dst) != dev)
continue;
rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
netdev_ref_replace(dev, blackhole_netdev,
@@ -3771,10 +3787,16 @@ int __init ip_rt_init(void)
ip_tstamps = idents_hash + (ip_idents_mask + 1) * sizeof(*ip_idents);
for_each_possible_cpu(cpu) {
- struct uncached_list *ul = &per_cpu(rt_uncached_list, cpu);
+ struct uncached_table *table;
+ int bucket;
+
+ table = per_cpu_ptr(&rt_uncached_table, cpu);
+ for (bucket = 0; bucket < RT_UNCACHED_HASH_SIZE; bucket++) {
+ struct uncached_list *ul = &table->buckets[bucket];
- INIT_LIST_HEAD(&ul->head);
- spin_lock_init(&ul->lock);
+ INIT_LIST_HEAD(&ul->head);
+ spin_lock_init(&ul->lock);
+ }
}
#ifdef CONFIG_IP_ROUTE_CLASSID
ip_rt_acct = __alloc_percpu(256 * sizeof(struct ip_rt_acct), __alignof__(struct ip_rt_acct));
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH net-next v3 2/3] ipv6: hash uncached routes by device
2026-09-17 19:38 [PATCH net-next v3 0/3] net: hash uncached route lists by device Chris J Arges
2026-09-17 19:38 ` [PATCH net-next v3 1/3] ipv4: hash uncached routes " Chris J Arges
@ 2026-09-17 19:38 ` Chris J Arges
2026-09-17 19:38 ` [PATCH net-next v3 3/3] selftests: net: cover IPv6 uncached route device mismatch Chris J Arges
2026-09-17 22:10 ` [PATCH net-next v3 0/3] net: hash uncached route lists by device Kuniyuki Iwashima
3 siblings, 0 replies; 9+ messages in thread
From: Chris J Arges @ 2026-09-17 19:38 UTC (permalink / raw)
To: David Ahern, Ido Schimmel, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, Shuah Khan
Cc: netdev, linux-kernel, linux-kselftest, kernel-team, Chris J Arges
rt6_uncached_list_flush_dev() currently walks every per-CPU uncached route
list for each device being removed. Hash uncached routes by their inet6
device so ordinary device teardown only visits the matching bucket on each
CPU.
ip6_rt_get_dev_rcu() can return loopback or an L3 master while rt6i_idev
still refers to the original interface. Key routes by rt6i_idev->dev when
available and fall back to dst_dev(). Ordinary devices then require one
bucket scan. Because loopback and L3 masters can instead be referenced by
dst_dev(), scan all buckets when one of those devices is removed.
This avoids growing struct rt6_info while filtering most unrelated routes
from ordinary device teardown.
The table has 64 buckets and costs approximately 1.5 KiB per possible CPU
on x86-64.
Signed-off-by: Chris J Arges <carges@cloudflare.com>
---
net/ipv6/route.c | 101 +++++++++++++++++++++++++++++++++++++------------------
1 file changed, 69 insertions(+), 32 deletions(-)
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 7535b09068a0..cda81e91be65 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -40,6 +40,7 @@
#include <linux/seq_file.h>
#include <linux/nsproxy.h>
#include <linux/slab.h>
+#include <linux/hash.h>
#include <linux/jhash.h>
#include <linux/siphash.h>
#include <net/net_namespace.h>
@@ -133,11 +134,23 @@ struct uncached_list {
struct list_head head;
};
-static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
+#define RT6_UNCACHED_HASH_BITS 6
+#define RT6_UNCACHED_HASH_SIZE BIT(RT6_UNCACHED_HASH_BITS)
+
+struct rt6_uncached_table {
+ struct uncached_list buckets[RT6_UNCACHED_HASH_SIZE];
+};
+
+static DEFINE_PER_CPU_ALIGNED(struct rt6_uncached_table, rt6_uncached_table);
void rt6_uncached_list_add(struct rt6_info *rt)
{
- struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
+ struct rt6_uncached_table *table = raw_cpu_ptr(&rt6_uncached_table);
+ struct uncached_list *ul;
+ struct net_device *dev;
+
+ dev = rt->rt6i_idev ? rt->rt6i_idev->dev : dst_dev(&rt->dst);
+ ul = &table->buckets[hash_ptr(dev, RT6_UNCACHED_HASH_BITS)];
rt->dst.rt_uncached_list = ul;
@@ -157,40 +170,58 @@ void rt6_uncached_list_del(struct rt6_info *rt)
}
}
+static void rt6_uncached_list_flush(struct uncached_list *ul,
+ struct net_device *dev)
+{
+ struct rt6_info *rt, *safe;
+
+ if (list_empty(&ul->head))
+ return;
+
+ spin_lock_bh(&ul->lock);
+ list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
+ struct net_device *rt_dev = dst_dev(&rt->dst);
+ struct inet6_dev *rt_idev = rt->rt6i_idev;
+ bool handled = false;
+
+ if (rt_idev && rt_idev->dev == dev) {
+ rt->rt6i_idev = in6_dev_get(blackhole_netdev);
+ in6_dev_put(rt_idev);
+ handled = true;
+ }
+
+ if (rt_dev == dev) {
+ rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
+ netdev_ref_replace(rt_dev, blackhole_netdev,
+ &rt->dst.dev_tracker, GFP_ATOMIC);
+ handled = true;
+ }
+ if (handled)
+ list_del_init(&rt->dst.rt_uncached);
+ }
+ spin_unlock_bh(&ul->lock);
+}
+
static void rt6_uncached_list_flush_dev(struct net_device *dev)
{
+ bool scan_all = dev->flags & IFF_LOOPBACK || netif_is_l3_master(dev);
int cpu;
for_each_possible_cpu(cpu) {
- struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
- struct rt6_info *rt, *safe;
-
- if (list_empty(&ul->head))
+ struct rt6_uncached_table *table;
+ struct uncached_list *ul;
+ int bucket;
+
+ table = per_cpu_ptr(&rt6_uncached_table, cpu);
+ if (!scan_all) {
+ ul = &table->buckets[hash_ptr(dev,
+ RT6_UNCACHED_HASH_BITS)];
+ rt6_uncached_list_flush(ul, dev);
continue;
-
- spin_lock_bh(&ul->lock);
- list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
- struct inet6_dev *rt_idev = rt->rt6i_idev;
- struct net_device *rt_dev = rt->dst.dev;
- bool handled = false;
-
- if (rt_idev && rt_idev->dev == dev) {
- rt->rt6i_idev = in6_dev_get(blackhole_netdev);
- in6_dev_put(rt_idev);
- handled = true;
- }
-
- if (rt_dev == dev) {
- rt->dst.dev = blackhole_netdev;
- netdev_ref_replace(rt_dev, blackhole_netdev,
- &rt->dst.dev_tracker,
- GFP_ATOMIC);
- handled = true;
- }
- if (handled)
- list_del_init(&rt->dst.rt_uncached);
}
- spin_unlock_bh(&ul->lock);
+
+ for (bucket = 0; bucket < RT6_UNCACHED_HASH_SIZE; bucket++)
+ rt6_uncached_list_flush(&table->buckets[bucket], dev);
}
}
@@ -6987,10 +7018,16 @@ int __init ip6_route_init(void)
#endif
for_each_possible_cpu(cpu) {
- struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
+ struct rt6_uncached_table *table;
+ int bucket;
+
+ table = per_cpu_ptr(&rt6_uncached_table, cpu);
+ for (bucket = 0; bucket < RT6_UNCACHED_HASH_SIZE; bucket++) {
+ struct uncached_list *ul = &table->buckets[bucket];
- INIT_LIST_HEAD(&ul->head);
- spin_lock_init(&ul->lock);
+ INIT_LIST_HEAD(&ul->head);
+ spin_lock_init(&ul->lock);
+ }
}
out:
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH net-next v3 3/3] selftests: net: cover IPv6 uncached route device mismatch
2026-09-17 19:38 [PATCH net-next v3 0/3] net: hash uncached route lists by device Chris J Arges
2026-09-17 19:38 ` [PATCH net-next v3 1/3] ipv4: hash uncached routes " Chris J Arges
2026-09-17 19:38 ` [PATCH net-next v3 2/3] ipv6: " Chris J Arges
@ 2026-09-17 19:38 ` Chris J Arges
2026-09-17 22:10 ` [PATCH net-next v3 0/3] net: hash uncached route lists by device Kuniyuki Iwashima
3 siblings, 0 replies; 9+ messages in thread
From: Chris J Arges @ 2026-09-17 19:38 UTC (permalink / raw)
To: David Ahern, Ido Schimmel, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, Shuah Khan
Cc: netdev, linux-kernel, linux-kselftest, kernel-team, Chris J Arges
Local IPv6 routes through a VRF can use the VRF as dst.dev while
retaining the VRF member interface in rt6i_idev. Exercise device
teardown while such uncached routes are retained by a delayed qdisc.
Reuse the existing VRF topology and msg_zerocopy raw-header sender, and
verify route creation, qdisc retention, and prompt interface deletion.
Signed-off-by: Chris J Arges <carges@cloudflare.com>
---
tools/testing/selftests/net/vrf-xfrm-tests.sh | 35 +++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/tools/testing/selftests/net/vrf-xfrm-tests.sh b/tools/testing/selftests/net/vrf-xfrm-tests.sh
index b64dd891699d..4f409d135a99 100755
--- a/tools/testing/selftests/net/vrf-xfrm-tests.sh
+++ b/tools/testing/selftests/net/vrf-xfrm-tests.sh
@@ -385,6 +385,37 @@ run_tests()
cleanup_xfrm_dev
}
+test_ipv6_uncached_mismatch()
+{
+ local sender_pid
+ local backlog
+ local rc
+
+ # A local route through a VRF uses the VRF as dst.dev while retaining
+ # the VRF member interface in rt6i_idev. Raw header sends create uncached
+ # routes, and netem keeps them referenced while the interface is deleted.
+ run_cmd_host1 tc qdisc replace dev ${VRF} root netem limit 1 delay 10s
+ ip -6 -netns "$host1" route add local ${HOST1_6}/128 dev eth0
+ ip netns exec "$host1" ./msg_zerocopy -6 \
+ -S ${HOST1_6} -D ${HOST1_6} -s 1200 -t 0 raw_hdrincl \
+ >/dev/null 2>&1 &
+ sender_pid=$!
+ wait "$sender_pid"
+ rc=$?
+ log_test $rc 0 "Create uncached IPv6 routes with mismatched devices"
+ [ $rc -ne 0 ] && return
+
+ backlog=$(ip netns exec "$host1" tc -s qdisc show dev ${VRF})
+ if ! echo "$backlog" | grep -Eq 'backlog .* [1-9][0-9]*p'; then
+ log_test 1 0 "Retain uncached IPv6 routes in VRF qdisc"
+ return
+ fi
+ log_test 0 0 "Retain uncached IPv6 routes in VRF qdisc"
+
+ run_cmd_host1 timeout 2 ip link del eth0
+ log_test $? 0 "Flush uncached IPv6 routes with mismatched devices"
+}
+
################################################################################
# usage
@@ -425,6 +456,10 @@ echo
echo "netem qdisc on VRF device"
run_tests
+echo
+echo "Uncached IPv6 route with mismatched devices"
+test_ipv6_uncached_mismatch
+
printf "\nTests passed: %3d\n" ${nsuccess}
printf "Tests failed: %3d\n" ${nfail}
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH net-next v3 0/3] net: hash uncached route lists by device
2026-09-17 19:38 [PATCH net-next v3 0/3] net: hash uncached route lists by device Chris J Arges
` (2 preceding siblings ...)
2026-09-17 19:38 ` [PATCH net-next v3 3/3] selftests: net: cover IPv6 uncached route device mismatch Chris J Arges
@ 2026-09-17 22:10 ` Kuniyuki Iwashima
2026-09-18 0:38 ` Chris Arges
3 siblings, 1 reply; 9+ messages in thread
From: Kuniyuki Iwashima @ 2026-09-17 22:10 UTC (permalink / raw)
To: carges
Cc: davem, dsahern, edumazet, horms, idosch, kernel-team, kuba,
linux-kernel, linux-kselftest, netdev, pabeni, shuah
From: Chris J Arges <carges@cloudflare.com>
Date: Thu, 17 Sep 2026 14:38:21 -0500
> We have observed hung tasks blocked on rtnl_mutex while network namespaces
> were being removed. The namespaces contained many network devices, and the
> host had accumulated a large population of entries on the global per-CPU
> uncached route lists. A perf profile collected during one incident
> attributed most of the cleanup worker's samples to rt_flush_dev():
>
> ```
> 99.92% kworker/u384:3- worker_thread
> `-88.71% process_one_work
> `-81.02% cleanup_net
> `-81.00% unregister_netdevice_many_notify
> `-79.42% notifier_call_chain
> `-78.05% fib_netdev_event
> `-77.92% rt_flush_dev
> ```
>
> For each device, rt_flush_dev() visits every possible CPU and scans the
> global uncached route population while its caller holds rtnl_mutex. If N is
> the number of devices, C the number of possible CPUs, and R the number of
> uncached routes, the cost is O(N * (C + R)).
>
> During namespace cleanup, other processes that issue RTNETLINK operations
> requiring the RTNL lock can stall until cleanup releases the lock.
>
> A minimal reproducer is available here:
> https://github.com/arges/linux-reproducers/tree/main/rtnl-flush-storm
>
> This series replaces each per-CPU uncached route list with a hash table
> using the network device as its key. Each table uses 64 buckets.
This sounds a bit overkill. Also, this series still leaves
O(N * C) loops.
Given unregistering a single device is less common than
destroying netns, I think the right approach should be to
make the route flush once in cleanup_net() + outside RTNL.
Could you try this change ? (only compile-tested)
---8<---
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h
index 46b4c67e2966..d8ce7dc0fbdc 100644
--- a/include/net/net_namespace.h
+++ b/include/net/net_namespace.h
@@ -489,6 +489,7 @@ struct pernet_operations {
*/
int (*init)(struct net *net);
void (*pre_exit)(struct net *net);
+ void (*pre_exit_batch)(struct list_head *net_exit_list);
void (*exit)(struct net *net);
void (*exit_batch)(struct list_head *net_exit_list);
/* Following method is called with RTNL held. */
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index da5f881fbd3b..7fc9bf45f3b6 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -160,6 +160,9 @@ static void ops_pre_exit_list(const struct pernet_operations *ops,
list_for_each_entry(net, net_exit_list, exit_list)
ops->pre_exit(net);
}
+
+ if (ops->pre_exit_batch)
+ ops->pre_exit_batch(net_exit_list);
}
static void ops_exit_rtnl_list(const struct list_head *ops_list,
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
index 8a3dc04e8cac..b8d76b6279e1 100644
--- a/net/ipv4/fib_frontend.c
+++ b/net/ipv4/fib_frontend.c
@@ -1685,6 +1685,11 @@ static void __net_exit fib_net_pre_exit(struct net *net)
nl_fib_lookup_exit(net);
}
+static void __net_exit fib_net_pre_exit_batch(struct list_head *net_exit_list)
+{
+ rt_flush_dev(NULL);
+}
+
static void __net_exit fib_net_exit_rtnl(struct net *net,
struct list_head *dev_kill_list)
{
@@ -1704,6 +1709,7 @@ static void __net_exit fib_net_exit(struct net *net)
static struct pernet_operations fib_net_ops = {
.init = fib_net_init,
.pre_exit = fib_net_pre_exit,
+ .pre_exit_batch = fib_net_pre_exit_batch,
.exit_rtnl = fib_net_exit_rtnl,
.exit = fib_net_exit,
};
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index d7da2f1acbb5..d35b66b33bbc 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1554,14 +1554,28 @@ struct uncached_list {
static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt_uncached_list);
+static void rt_replace_uncached_list(struct rtable *rt)
+{
+ struct net_device *dev = dst_dev(&rt->dst);
+
+ rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
+ netdev_ref_replace(dev, blackhole_netdev,
+ &rt->dst.dev_tracker, GFP_ATOMIC);
+}
+
void rt_add_uncached_list(struct rtable *rt)
{
struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
- rt->dst.rt_uncached_list = ul;
-
spin_lock_bh(&ul->lock);
- list_add_tail(&rt->dst.rt_uncached, &ul->head);
+
+ if (!check_net(dst_dev_net_rcu(&rt->dst))) {
+ rt_replace_uncached_list(rt);
+ } else {
+ rt->dst.rt_uncached_list = ul;
+ list_add_tail(&rt->dst.rt_uncached, &ul->head);
+ }
+
spin_unlock_bh(&ul->lock);
}
@@ -1587,6 +1601,9 @@ void rt_flush_dev(struct net_device *dev)
struct rtable *rt, *safe;
int cpu;
+ if (dev && !check_net(dev_net(dev)))
+ return;
+
for_each_possible_cpu(cpu) {
struct uncached_list *ul = &per_cpu(rt_uncached_list, cpu);
@@ -1595,11 +1612,11 @@ void rt_flush_dev(struct net_device *dev)
spin_lock_bh(&ul->lock);
list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
- if (rt->dst.dev != dev)
+ if (rt->dst.dev != dev &&
+ (dev || check_net(dev_net(rt->dst.dev))))
continue;
- rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
- netdev_ref_replace(dev, blackhole_netdev,
- &rt->dst.dev_tracker, GFP_ATOMIC);
+
+ rt_replace_uncached_list(rt);
list_del_init(&rt->dst.rt_uncached);
}
spin_unlock_bh(&ul->lock);
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 7535b09068a0..28233197e1e1 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -135,14 +135,35 @@ struct uncached_list {
static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
+static void rt6_uncached_list_replace(struct rt6_info *rt)
+{
+ struct net_device *dev = dst_dev(&rt->dst);
+ struct inet6_dev *rt_idev = rt->rt6i_idev;
+
+ if (rt_idev) {
+ rt->rt6i_idev = in6_dev_get(blackhole_netdev);
+ in6_dev_put(rt_idev);
+ }
+
+ rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
+ netdev_ref_replace(dev, blackhole_netdev,
+ &rt->dst.dev_tracker,
+ GFP_ATOMIC);
+}
+
void rt6_uncached_list_add(struct rt6_info *rt)
{
struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
- rt->dst.rt_uncached_list = ul;
-
spin_lock_bh(&ul->lock);
- list_add_tail(&rt->dst.rt_uncached, &ul->head);
+
+ if (!check_net(dst_dev_net_rcu(&rt->dst))) {
+ rt6_uncached_list_replace(rt);
+ } else {
+ rt->dst.rt_uncached_list = ul;
+ list_add_tail(&rt->dst.rt_uncached, &ul->head);
+ }
+
spin_unlock_bh(&ul->lock);
}
@@ -161,6 +182,9 @@ static void rt6_uncached_list_flush_dev(struct net_device *dev)
{
int cpu;
+ if (dev && !check_net(dev_net(dev)))
+ return;
+
for_each_possible_cpu(cpu) {
struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
struct rt6_info *rt, *safe;
@@ -172,23 +196,17 @@ static void rt6_uncached_list_flush_dev(struct net_device *dev)
list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
struct inet6_dev *rt_idev = rt->rt6i_idev;
struct net_device *rt_dev = rt->dst.dev;
- bool handled = false;
- if (rt_idev && rt_idev->dev == dev) {
- rt->rt6i_idev = in6_dev_get(blackhole_netdev);
- in6_dev_put(rt_idev);
- handled = true;
+ if (dev) {
+ if (rt_dev != dev &&
+ (!rt_idev || rt_idev->dev != dev))
+ continue;
+ } else if (check_net(dev_net(rt_dev))) {
+ continue;
}
- if (rt_dev == dev) {
- rt->dst.dev = blackhole_netdev;
- netdev_ref_replace(rt_dev, blackhole_netdev,
- &rt->dst.dev_tracker,
- GFP_ATOMIC);
- handled = true;
- }
- if (handled)
- list_del_init(&rt->dst.rt_uncached);
+ rt6_uncached_list_replace(rt);
+ list_del_init(&rt->dst.rt_uncached);
}
spin_unlock_bh(&ul->lock);
}
@@ -6795,6 +6813,11 @@ static int __net_init ip6_route_net_init(struct net *net)
goto out;
}
+static void __net_exit ip6_route_net_pre_exit_batch(struct list_head *net_exit_list)
+{
+ rt6_uncached_list_flush_dev(NULL);
+}
+
static void __net_exit ip6_route_net_exit(struct net *net)
{
kfree(net->ipv6.fib6_null_entry);
@@ -6833,6 +6856,7 @@ static void __net_exit ip6_route_net_exit_late(struct net *net)
static struct pernet_operations ip6_route_net_ops = {
.init = ip6_route_net_init,
+ .pre_exit_batch = ip6_route_net_pre_exit_batch,
.exit = ip6_route_net_exit,
};
---8<---
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH net-next v3 0/3] net: hash uncached route lists by device
2026-09-17 22:10 ` [PATCH net-next v3 0/3] net: hash uncached route lists by device Kuniyuki Iwashima
@ 2026-09-18 0:38 ` Chris Arges
2026-09-18 4:19 ` Kuniyuki Iwashima
0 siblings, 1 reply; 9+ messages in thread
From: Chris Arges @ 2026-09-18 0:38 UTC (permalink / raw)
To: Kuniyuki Iwashima
Cc: davem, dsahern, edumazet, horms, idosch, kernel-team, kuba,
linux-kernel, linux-kselftest, netdev, pabeni, shuah
On 2026-09-17 22:10:22, Kuniyuki Iwashima wrote:
> From: Chris J Arges <carges@cloudflare.com>
> Date: Thu, 17 Sep 2026 14:38:21 -0500
> > We have observed hung tasks blocked on rtnl_mutex while network namespaces
> > were being removed. The namespaces contained many network devices, and the
> > host had accumulated a large population of entries on the global per-CPU
> > uncached route lists. A perf profile collected during one incident
> > attributed most of the cleanup worker's samples to rt_flush_dev():
> >
> > ```
> > 99.92% kworker/u384:3- worker_thread
> > `-88.71% process_one_work
> > `-81.02% cleanup_net
> > `-81.00% unregister_netdevice_many_notify
> > `-79.42% notifier_call_chain
> > `-78.05% fib_netdev_event
> > `-77.92% rt_flush_dev
> > ```
> >
> > For each device, rt_flush_dev() visits every possible CPU and scans the
> > global uncached route population while its caller holds rtnl_mutex. If N is
> > the number of devices, C the number of possible CPUs, and R the number of
> > uncached routes, the cost is O(N * (C + R)).
> >
> > During namespace cleanup, other processes that issue RTNETLINK operations
> > requiring the RTNL lock can stall until cleanup releases the lock.
> >
> > A minimal reproducer is available here:
> > https://github.com/arges/linux-reproducers/tree/main/rtnl-flush-storm
> >
> > This series replaces each per-CPU uncached route list with a hash table
> > using the network device as its key. Each table uses 64 buckets.
>
> This sounds a bit overkill. Also, this series still leaves
> O(N * C) loops.
>
> Given unregistering a single device is less common than
> destroying netns, I think the right approach should be to
> make the route flush once in cleanup_net() + outside RTNL.
>
> Could you try this change ? (only compile-tested)
>
Excellent, I'll test this and report back.
Thanks,
--chris
> ---8<---
> diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h
> index 46b4c67e2966..d8ce7dc0fbdc 100644
> --- a/include/net/net_namespace.h
> +++ b/include/net/net_namespace.h
> @@ -489,6 +489,7 @@ struct pernet_operations {
> */
> int (*init)(struct net *net);
> void (*pre_exit)(struct net *net);
> + void (*pre_exit_batch)(struct list_head *net_exit_list);
> void (*exit)(struct net *net);
> void (*exit_batch)(struct list_head *net_exit_list);
> /* Following method is called with RTNL held. */
> diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
> index da5f881fbd3b..7fc9bf45f3b6 100644
> --- a/net/core/net_namespace.c
> +++ b/net/core/net_namespace.c
> @@ -160,6 +160,9 @@ static void ops_pre_exit_list(const struct pernet_operations *ops,
> list_for_each_entry(net, net_exit_list, exit_list)
> ops->pre_exit(net);
> }
> +
> + if (ops->pre_exit_batch)
> + ops->pre_exit_batch(net_exit_list);
> }
>
> static void ops_exit_rtnl_list(const struct list_head *ops_list,
> diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
> index 8a3dc04e8cac..b8d76b6279e1 100644
> --- a/net/ipv4/fib_frontend.c
> +++ b/net/ipv4/fib_frontend.c
> @@ -1685,6 +1685,11 @@ static void __net_exit fib_net_pre_exit(struct net *net)
> nl_fib_lookup_exit(net);
> }
>
> +static void __net_exit fib_net_pre_exit_batch(struct list_head *net_exit_list)
> +{
> + rt_flush_dev(NULL);
> +}
> +
> static void __net_exit fib_net_exit_rtnl(struct net *net,
> struct list_head *dev_kill_list)
> {
> @@ -1704,6 +1709,7 @@ static void __net_exit fib_net_exit(struct net *net)
> static struct pernet_operations fib_net_ops = {
> .init = fib_net_init,
> .pre_exit = fib_net_pre_exit,
> + .pre_exit_batch = fib_net_pre_exit_batch,
> .exit_rtnl = fib_net_exit_rtnl,
> .exit = fib_net_exit,
> };
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index d7da2f1acbb5..d35b66b33bbc 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1554,14 +1554,28 @@ struct uncached_list {
>
> static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt_uncached_list);
>
> +static void rt_replace_uncached_list(struct rtable *rt)
> +{
> + struct net_device *dev = dst_dev(&rt->dst);
> +
> + rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
> + netdev_ref_replace(dev, blackhole_netdev,
> + &rt->dst.dev_tracker, GFP_ATOMIC);
> +}
> +
> void rt_add_uncached_list(struct rtable *rt)
> {
> struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
>
> - rt->dst.rt_uncached_list = ul;
> -
> spin_lock_bh(&ul->lock);
> - list_add_tail(&rt->dst.rt_uncached, &ul->head);
> +
> + if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> + rt_replace_uncached_list(rt);
> + } else {
> + rt->dst.rt_uncached_list = ul;
> + list_add_tail(&rt->dst.rt_uncached, &ul->head);
> + }
> +
> spin_unlock_bh(&ul->lock);
> }
>
> @@ -1587,6 +1601,9 @@ void rt_flush_dev(struct net_device *dev)
> struct rtable *rt, *safe;
> int cpu;
>
> + if (dev && !check_net(dev_net(dev)))
> + return;
> +
> for_each_possible_cpu(cpu) {
> struct uncached_list *ul = &per_cpu(rt_uncached_list, cpu);
>
> @@ -1595,11 +1612,11 @@ void rt_flush_dev(struct net_device *dev)
>
> spin_lock_bh(&ul->lock);
> list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
> - if (rt->dst.dev != dev)
> + if (rt->dst.dev != dev &&
> + (dev || check_net(dev_net(rt->dst.dev))))
> continue;
> - rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
> - netdev_ref_replace(dev, blackhole_netdev,
> - &rt->dst.dev_tracker, GFP_ATOMIC);
> +
> + rt_replace_uncached_list(rt);
> list_del_init(&rt->dst.rt_uncached);
> }
> spin_unlock_bh(&ul->lock);
> diff --git a/net/ipv6/route.c b/net/ipv6/route.c
> index 7535b09068a0..28233197e1e1 100644
> --- a/net/ipv6/route.c
> +++ b/net/ipv6/route.c
> @@ -135,14 +135,35 @@ struct uncached_list {
>
> static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
>
> +static void rt6_uncached_list_replace(struct rt6_info *rt)
> +{
> + struct net_device *dev = dst_dev(&rt->dst);
> + struct inet6_dev *rt_idev = rt->rt6i_idev;
> +
> + if (rt_idev) {
> + rt->rt6i_idev = in6_dev_get(blackhole_netdev);
> + in6_dev_put(rt_idev);
> + }
> +
> + rcu_assign_pointer(rt->dst.dev_rcu, blackhole_netdev);
> + netdev_ref_replace(dev, blackhole_netdev,
> + &rt->dst.dev_tracker,
> + GFP_ATOMIC);
> +}
> +
> void rt6_uncached_list_add(struct rt6_info *rt)
> {
> struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
>
> - rt->dst.rt_uncached_list = ul;
> -
> spin_lock_bh(&ul->lock);
> - list_add_tail(&rt->dst.rt_uncached, &ul->head);
> +
> + if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> + rt6_uncached_list_replace(rt);
> + } else {
> + rt->dst.rt_uncached_list = ul;
> + list_add_tail(&rt->dst.rt_uncached, &ul->head);
> + }
> +
> spin_unlock_bh(&ul->lock);
> }
>
> @@ -161,6 +182,9 @@ static void rt6_uncached_list_flush_dev(struct net_device *dev)
> {
> int cpu;
>
> + if (dev && !check_net(dev_net(dev)))
> + return;
> +
> for_each_possible_cpu(cpu) {
> struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
> struct rt6_info *rt, *safe;
> @@ -172,23 +196,17 @@ static void rt6_uncached_list_flush_dev(struct net_device *dev)
> list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) {
> struct inet6_dev *rt_idev = rt->rt6i_idev;
> struct net_device *rt_dev = rt->dst.dev;
> - bool handled = false;
>
> - if (rt_idev && rt_idev->dev == dev) {
> - rt->rt6i_idev = in6_dev_get(blackhole_netdev);
> - in6_dev_put(rt_idev);
> - handled = true;
> + if (dev) {
> + if (rt_dev != dev &&
> + (!rt_idev || rt_idev->dev != dev))
> + continue;
> + } else if (check_net(dev_net(rt_dev))) {
> + continue;
> }
>
> - if (rt_dev == dev) {
> - rt->dst.dev = blackhole_netdev;
> - netdev_ref_replace(rt_dev, blackhole_netdev,
> - &rt->dst.dev_tracker,
> - GFP_ATOMIC);
> - handled = true;
> - }
> - if (handled)
> - list_del_init(&rt->dst.rt_uncached);
> + rt6_uncached_list_replace(rt);
> + list_del_init(&rt->dst.rt_uncached);
> }
> spin_unlock_bh(&ul->lock);
> }
> @@ -6795,6 +6813,11 @@ static int __net_init ip6_route_net_init(struct net *net)
> goto out;
> }
>
> +static void __net_exit ip6_route_net_pre_exit_batch(struct list_head *net_exit_list)
> +{
> + rt6_uncached_list_flush_dev(NULL);
> +}
> +
> static void __net_exit ip6_route_net_exit(struct net *net)
> {
> kfree(net->ipv6.fib6_null_entry);
> @@ -6833,6 +6856,7 @@ static void __net_exit ip6_route_net_exit_late(struct net *net)
>
> static struct pernet_operations ip6_route_net_ops = {
> .init = ip6_route_net_init,
> + .pre_exit_batch = ip6_route_net_pre_exit_batch,
> .exit = ip6_route_net_exit,
> };
>
> ---8<---
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH net-next v3 0/3] net: hash uncached route lists by device
2026-09-18 0:38 ` Chris Arges
@ 2026-09-18 4:19 ` Kuniyuki Iwashima
2026-09-18 18:24 ` Chris Arges
0 siblings, 1 reply; 9+ messages in thread
From: Kuniyuki Iwashima @ 2026-09-18 4:19 UTC (permalink / raw)
To: carges
Cc: davem, dsahern, edumazet, horms, idosch, kernel-team, kuba,
kuniyu, linux-kernel, linux-kselftest, netdev, pabeni, shuah
From: Chris Arges <carges@cloudflare.com>
Date: Thu, 17 Sep 2026 19:38:40 -0500
> On 2026-09-17 22:10:22, Kuniyuki Iwashima wrote:
> > From: Chris J Arges <carges@cloudflare.com>
> > Date: Thu, 17 Sep 2026 14:38:21 -0500
> > > We have observed hung tasks blocked on rtnl_mutex while network namespaces
> > > were being removed. The namespaces contained many network devices, and the
> > > host had accumulated a large population of entries on the global per-CPU
> > > uncached route lists. A perf profile collected during one incident
> > > attributed most of the cleanup worker's samples to rt_flush_dev():
> > >
> > > ```
> > > 99.92% kworker/u384:3- worker_thread
> > > `-88.71% process_one_work
> > > `-81.02% cleanup_net
> > > `-81.00% unregister_netdevice_many_notify
> > > `-79.42% notifier_call_chain
> > > `-78.05% fib_netdev_event
> > > `-77.92% rt_flush_dev
> > > ```
> > >
> > > For each device, rt_flush_dev() visits every possible CPU and scans the
> > > global uncached route population while its caller holds rtnl_mutex. If N is
> > > the number of devices, C the number of possible CPUs, and R the number of
> > > uncached routes, the cost is O(N * (C + R)).
> > >
> > > During namespace cleanup, other processes that issue RTNETLINK operations
> > > requiring the RTNL lock can stall until cleanup releases the lock.
> > >
> > > A minimal reproducer is available here:
> > > https://github.com/arges/linux-reproducers/tree/main/rtnl-flush-storm
> > >
> > > This series replaces each per-CPU uncached route list with a hash table
> > > using the network device as its key. Each table uses 64 buckets.
> >
> > This sounds a bit overkill. Also, this series still leaves
> > O(N * C) loops.
> >
> > Given unregistering a single device is less common than
> > destroying netns, I think the right approach should be to
> > make the route flush once in cleanup_net() + outside RTNL.
> >
> > Could you try this change ? (only compile-tested)
> >
> Excellent, I'll test this and report back.
I found a pre-existing issue, which affects the previous
diff, so on top of it, please apply this patch
https://lore.kernel.org/netdev/20260918041439.2575935-1-kuniyu@google.com/T/#u
and this diff :
---8<---
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index d35b66b33bbc..c12e20e07749 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1567,12 +1567,13 @@ void rt_add_uncached_list(struct rtable *rt)
{
struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
+ rt->dst.rt_uncached_list = ul;
+
spin_lock_bh(&ul->lock);
if (!check_net(dst_dev_net_rcu(&rt->dst))) {
rt_replace_uncached_list(rt);
} else {
- rt->dst.rt_uncached_list = ul;
list_add_tail(&rt->dst.rt_uncached, &ul->head);
}
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 6cffe8440b44..f22793abbbb8 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -155,12 +155,13 @@ void rt6_uncached_list_add(struct rt6_info *rt)
{
struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
+ rt->dst.rt_uncached_list = ul;
+
spin_lock_bh(&ul->lock);
if (!check_net(dst_dev_net_rcu(&rt->dst))) {
rt6_uncached_list_replace(rt);
} else {
- rt->dst.rt_uncached_list = ul;
list_add_tail(&rt->dst.rt_uncached, &ul->head);
}
---8<---
Thanks !
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH net-next v3 0/3] net: hash uncached route lists by device
2026-09-18 4:19 ` Kuniyuki Iwashima
@ 2026-09-18 18:24 ` Chris Arges
2026-09-18 18:41 ` Kuniyuki Iwashima
0 siblings, 1 reply; 9+ messages in thread
From: Chris Arges @ 2026-09-18 18:24 UTC (permalink / raw)
To: Kuniyuki Iwashima
Cc: davem, dsahern, edumazet, horms, idosch, kernel-team, kuba,
linux-kernel, linux-kselftest, netdev, pabeni, shuah
On 2026-09-18 04:19:34, Kuniyuki Iwashima wrote:
> From: Chris Arges <carges@cloudflare.com>
> Date: Thu, 17 Sep 2026 19:38:40 -0500
> > On 2026-09-17 22:10:22, Kuniyuki Iwashima wrote:
> > > From: Chris J Arges <carges@cloudflare.com>
> > > Date: Thu, 17 Sep 2026 14:38:21 -0500
> > > > We have observed hung tasks blocked on rtnl_mutex while network namespaces
> > > > were being removed. The namespaces contained many network devices, and the
> > > > host had accumulated a large population of entries on the global per-CPU
> > > > uncached route lists. A perf profile collected during one incident
> > > > attributed most of the cleanup worker's samples to rt_flush_dev():
> > > >
> > > > ```
> > > > 99.92% kworker/u384:3- worker_thread
> > > > `-88.71% process_one_work
> > > > `-81.02% cleanup_net
> > > > `-81.00% unregister_netdevice_many_notify
> > > > `-79.42% notifier_call_chain
> > > > `-78.05% fib_netdev_event
> > > > `-77.92% rt_flush_dev
> > > > ```
> > > >
> > > > For each device, rt_flush_dev() visits every possible CPU and scans the
> > > > global uncached route population while its caller holds rtnl_mutex. If N is
> > > > the number of devices, C the number of possible CPUs, and R the number of
> > > > uncached routes, the cost is O(N * (C + R)).
> > > >
> > > > During namespace cleanup, other processes that issue RTNETLINK operations
> > > > requiring the RTNL lock can stall until cleanup releases the lock.
> > > >
> > > > A minimal reproducer is available here:
> > > > https://github.com/arges/linux-reproducers/tree/main/rtnl-flush-storm
> > > >
> > > > This series replaces each per-CPU uncached route list with a hash table
> > > > using the network device as its key. Each table uses 64 buckets.
> > >
> > > This sounds a bit overkill. Also, this series still leaves
> > > O(N * C) loops.
> > >
> > > Given unregistering a single device is less common than
> > > destroying netns, I think the right approach should be to
> > > make the route flush once in cleanup_net() + outside RTNL.
> > >
> > > Could you try this change ? (only compile-tested)
> > >
> > Excellent, I'll test this and report back.
>
> I found a pre-existing issue, which affects the previous
> diff, so on top of it, please apply this patch
>
> https://lore.kernel.org/netdev/20260918041439.2575935-1-kuniyu@google.com/T/#u
>
> and this diff :
>
> ---8<---
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index d35b66b33bbc..c12e20e07749 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1567,12 +1567,13 @@ void rt_add_uncached_list(struct rtable *rt)
> {
> struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
>
> + rt->dst.rt_uncached_list = ul;
> +
> spin_lock_bh(&ul->lock);
>
> if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> rt_replace_uncached_list(rt);
> } else {
> - rt->dst.rt_uncached_list = ul;
> list_add_tail(&rt->dst.rt_uncached, &ul->head);
> }
>
> diff --git a/net/ipv6/route.c b/net/ipv6/route.c
> index 6cffe8440b44..f22793abbbb8 100644
> --- a/net/ipv6/route.c
> +++ b/net/ipv6/route.c
> @@ -155,12 +155,13 @@ void rt6_uncached_list_add(struct rt6_info *rt)
> {
> struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
>
> + rt->dst.rt_uncached_list = ul;
> +
> spin_lock_bh(&ul->lock);
>
> if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> rt6_uncached_list_replace(rt);
> } else {
> - rt->dst.rt_uncached_list = ul;
> list_add_tail(&rt->dst.rt_uncached, &ul->head);
> }
>
> ---8<---
Kuniyuki,
I was able to test this diff, the previous diff you sent plus the fixup
mentioned above. I was able to confirm even greater reduction in contention
as measured by how much latency an unrelated process takes when waiting for
cleanup_net to complete. This makes sense since we don't even need to hold the
lock when processing those routing entries with your patch.
Some rough average latency numbers with 36 devices, 160k routes, 8 vCPUs:
- main: 137ms
- my hashing proposal: 13ms
- your patchset: 1.8ms
I'd be happy to retest any proposed patches.
Thanks,
--chris
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH net-next v3 0/3] net: hash uncached route lists by device
2026-09-18 18:24 ` Chris Arges
@ 2026-09-18 18:41 ` Kuniyuki Iwashima
0 siblings, 0 replies; 9+ messages in thread
From: Kuniyuki Iwashima @ 2026-09-18 18:41 UTC (permalink / raw)
To: Chris Arges
Cc: davem, dsahern, edumazet, horms, idosch, kernel-team, kuba,
linux-kernel, linux-kselftest, netdev, pabeni, shuah
On Fri, Sep 18, 2026 at 11:24 AM Chris Arges <carges@cloudflare.com> wrote:
>
> On 2026-09-18 04:19:34, Kuniyuki Iwashima wrote:
> > From: Chris Arges <carges@cloudflare.com>
> > Date: Thu, 17 Sep 2026 19:38:40 -0500
> > > On 2026-09-17 22:10:22, Kuniyuki Iwashima wrote:
> > > > From: Chris J Arges <carges@cloudflare.com>
> > > > Date: Thu, 17 Sep 2026 14:38:21 -0500
> > > > > We have observed hung tasks blocked on rtnl_mutex while network namespaces
> > > > > were being removed. The namespaces contained many network devices, and the
> > > > > host had accumulated a large population of entries on the global per-CPU
> > > > > uncached route lists. A perf profile collected during one incident
> > > > > attributed most of the cleanup worker's samples to rt_flush_dev():
> > > > >
> > > > > ```
> > > > > 99.92% kworker/u384:3- worker_thread
> > > > > `-88.71% process_one_work
> > > > > `-81.02% cleanup_net
> > > > > `-81.00% unregister_netdevice_many_notify
> > > > > `-79.42% notifier_call_chain
> > > > > `-78.05% fib_netdev_event
> > > > > `-77.92% rt_flush_dev
> > > > > ```
> > > > >
> > > > > For each device, rt_flush_dev() visits every possible CPU and scans the
> > > > > global uncached route population while its caller holds rtnl_mutex. If N is
> > > > > the number of devices, C the number of possible CPUs, and R the number of
> > > > > uncached routes, the cost is O(N * (C + R)).
> > > > >
> > > > > During namespace cleanup, other processes that issue RTNETLINK operations
> > > > > requiring the RTNL lock can stall until cleanup releases the lock.
> > > > >
> > > > > A minimal reproducer is available here:
> > > > > https://github.com/arges/linux-reproducers/tree/main/rtnl-flush-storm
> > > > >
> > > > > This series replaces each per-CPU uncached route list with a hash table
> > > > > using the network device as its key. Each table uses 64 buckets.
> > > >
> > > > This sounds a bit overkill. Also, this series still leaves
> > > > O(N * C) loops.
> > > >
> > > > Given unregistering a single device is less common than
> > > > destroying netns, I think the right approach should be to
> > > > make the route flush once in cleanup_net() + outside RTNL.
> > > >
> > > > Could you try this change ? (only compile-tested)
> > > >
> > > Excellent, I'll test this and report back.
> >
> > I found a pre-existing issue, which affects the previous
> > diff, so on top of it, please apply this patch
> >
> > https://lore.kernel.org/netdev/20260918041439.2575935-1-kuniyu@google.com/T/#u
> >
> > and this diff :
> >
> > ---8<---
> > diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> > index d35b66b33bbc..c12e20e07749 100644
> > --- a/net/ipv4/route.c
> > +++ b/net/ipv4/route.c
> > @@ -1567,12 +1567,13 @@ void rt_add_uncached_list(struct rtable *rt)
> > {
> > struct uncached_list *ul = raw_cpu_ptr(&rt_uncached_list);
> >
> > + rt->dst.rt_uncached_list = ul;
> > +
> > spin_lock_bh(&ul->lock);
> >
> > if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> > rt_replace_uncached_list(rt);
> > } else {
> > - rt->dst.rt_uncached_list = ul;
> > list_add_tail(&rt->dst.rt_uncached, &ul->head);
> > }
> >
> > diff --git a/net/ipv6/route.c b/net/ipv6/route.c
> > index 6cffe8440b44..f22793abbbb8 100644
> > --- a/net/ipv6/route.c
> > +++ b/net/ipv6/route.c
> > @@ -155,12 +155,13 @@ void rt6_uncached_list_add(struct rt6_info *rt)
> > {
> > struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
> >
> > + rt->dst.rt_uncached_list = ul;
> > +
> > spin_lock_bh(&ul->lock);
> >
> > if (!check_net(dst_dev_net_rcu(&rt->dst))) {
> > rt6_uncached_list_replace(rt);
> > } else {
> > - rt->dst.rt_uncached_list = ul;
> > list_add_tail(&rt->dst.rt_uncached, &ul->head);
> > }
> >
> > ---8<---
>
> Kuniyuki,
>
> I was able to test this diff, the previous diff you sent plus the fixup
> mentioned above. I was able to confirm even greater reduction in contention
> as measured by how much latency an unrelated process takes when waiting for
> cleanup_net to complete. This makes sense since we don't even need to hold the
> lock when processing those routing entries with your patch.
>
> Some rough average latency numbers with 36 devices, 160k routes, 8 vCPUs:
> - main: 137ms
> - my hashing proposal: 13ms
> - your patchset: 1.8ms
>
> I'd be happy to retest any proposed patches.
Great, thank you for testing !
I will post patches officially once my fix lands in net-next
(so should be after next Thursday)
Thanks !
^ permalink raw reply [flat|nested] 9+ messages in thread