Jon Maxwell
95372b040a
ipv6: remove max_size check inline with ipv4
...
commit af6d10345ca76670c1b7c37799f0d5576ccef277 upstream.
In ip6_dst_gc() replace:
if (entries > gc_thresh)
With:
if (entries > ops->gc_thresh)
Sending Ipv6 packets in a loop via a raw socket triggers an issue where a
route is cloned by ip6_rt_cache_alloc() for each packet sent. This quickly
consumes the Ipv6 max_size threshold which defaults to 4096 resulting in
these warnings:
[1] 99.187805] dst_alloc: 7728 callbacks suppressed
[2] Route cache is full: consider increasing sysctl net.ipv6.route.max_size.
.
.
[300] Route cache is full: consider increasing sysctl net.ipv6.route.max_size.
When this happens the packet is dropped and sendto() gets a network is
unreachable error:
remaining pkt 200557 errno 101
remaining pkt 196462 errno 101
.
.
remaining pkt 126821 errno 101
Implement David Aherns suggestion to remove max_size check seeing that Ipv6
has a GC to manage memory usage. Ipv4 already does not check max_size.
Here are some memory comparisons for Ipv4 vs Ipv6 with the patch:
Test by running 5 instances of a program that sends UDP packets to a raw
socket 5000000 times. Compare Ipv4 and Ipv6 performance with a similar
program.
Ipv4:
Before test:
MemFree: 29427108 kB
Slab: 237612 kB
ip6_dst_cache 1912 2528 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 2881 3990 192 42 2 : tunables 0 0 0
During test:
MemFree: 29417608 kB
Slab: 247712 kB
ip6_dst_cache 1912 2528 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 44394 44394 192 42 2 : tunables 0 0 0
After test:
MemFree: 29422308 kB
Slab: 238104 kB
ip6_dst_cache 1912 2528 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 3048 4116 192 42 2 : tunables 0 0 0
Ipv6 with patch:
Errno 101 errors are not observed anymore with the patch.
Before test:
MemFree: 29422308 kB
Slab: 238104 kB
ip6_dst_cache 1912 2528 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 3048 4116 192 42 2 : tunables 0 0 0
During Test:
MemFree: 29431516 kB
Slab: 240940 kB
ip6_dst_cache 11980 12064 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 3048 4116 192 42 2 : tunables 0 0 0
After Test:
MemFree: 29441816 kB
Slab: 238132 kB
ip6_dst_cache 1902 2432 256 32 2 : tunables 0 0 0
xfrm_dst_cache 0 0 320 25 2 : tunables 0 0 0
ip_dst_cache 3048 4116 192 42 2 : tunables 0 0 0
Tested-by: Andrea Mayer <andrea.mayer@uniroma2.it>
Signed-off-by: Jon Maxwell <jmaxwell37@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/20230112012532.311021-1-jmaxwell37@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Suraj Jitindar Singh <surajjs@amazon.com>
Cc: <stable@vger.kernel.org> # 4.19.x
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-01-15 18:23:44 +01:00
..
2020-01-27 14:50:41 +01:00
2024-01-08 11:27:36 +01:00
2023-01-18 11:30:36 +01:00
2024-01-08 11:27:34 +01:00
2023-12-20 15:38:01 +01:00
2023-12-20 15:38:00 +01:00
2022-04-27 13:39:46 +02:00
2023-08-30 16:31:55 +02:00
2024-01-08 11:27:36 +01:00
2022-11-25 17:40:29 +01:00
2020-01-27 14:50:51 +01:00
2023-10-10 21:44:57 +02:00
2023-03-17 08:31:44 +01:00
2023-08-11 11:45:24 +02:00
2023-10-25 11:16:51 +02:00
2024-01-15 18:23:44 +01:00
2022-03-08 19:04:10 +01:00
2023-11-20 10:29:21 +01:00
2023-06-21 15:39:57 +02:00
2020-04-23 10:30:24 +02:00
2022-03-23 09:10:44 +01:00
2020-01-09 10:19:09 +01:00
2022-12-08 11:18:33 +01:00
2022-11-03 23:52:30 +09:00
2024-01-08 11:27:34 +01:00
2023-12-20 15:38:01 +01:00
2024-01-15 18:23:44 +01:00
2023-03-22 13:27:10 +01:00
2023-09-23 10:48:15 +02:00
2023-08-30 16:31:48 +02:00
2023-10-10 21:45:01 +02:00
2021-02-10 09:21:06 +01:00
2023-11-20 10:29:21 +01:00
2024-01-08 11:27:33 +01:00
2022-12-14 11:28:28 +01:00
2023-02-22 12:47:21 +01:00
2021-04-14 08:22:35 +02:00
2024-01-15 18:23:43 +01:00
2023-09-23 10:47:58 +02:00
2023-12-13 17:42:20 +01:00
2023-09-23 10:48:01 +02:00
2024-01-15 18:23:41 +01:00
2023-05-30 12:42:11 +01:00
2023-02-22 12:47:12 +01:00
2023-12-13 17:42:18 +01:00
2022-01-11 13:58:50 +01:00
2023-12-13 17:42:20 +01:00
2021-09-03 09:58:00 +02:00
2023-10-25 11:16:21 +02:00
2024-01-08 11:27:36 +01:00
2024-01-08 11:27:34 +01:00
2023-05-17 11:13:24 +02:00
2024-01-15 18:23:41 +01:00
2023-10-10 21:45:01 +02:00
2023-11-20 10:29:21 +01:00
2023-08-11 11:45:20 +02:00
2023-11-28 16:46:33 +00:00
2022-07-29 17:10:32 +02:00
2023-09-23 10:48:13 +02:00
2023-12-20 15:38:01 +01:00
2024-01-08 11:27:35 +01:00
2023-02-22 12:47:12 +01:00
2021-05-22 10:59:48 +02:00
2023-10-25 11:16:44 +02:00
2021-06-30 08:48:13 -04:00
2023-06-21 15:39:57 +02:00
2023-06-21 15:39:57 +02:00
2024-01-15 18:23:42 +01:00