[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20221104190612.24206-1-kuniyu@amazon.com>
Date: Fri, 4 Nov 2022 12:06:06 -0700
From: Kuniyuki Iwashima <kuniyu@...zon.com>
To: "David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>
CC: Kuniyuki Iwashima <kuniyu@...zon.com>,
Kuniyuki Iwashima <kuni1840@...il.com>,
<netdev@...r.kernel.org>
Subject: [PATCH v1 net-next 0/6] udp: Introduce optional per-netns hash table.
This series is the UDP version of the per-netns ehash series [0],
which were initially in the same patch set. [1]
The notable difference with TCP is the max table size is 64K. This
is because the possible hash range by udp_hashfn() always fits in 64K
within the same netns. Also, the UDP per-netns table isolates both
1-tuple and 2-tuple tables.
For details, please see the last patch.
patch 1 - 4: prep for per-netns hash table
patch 5: prep for dynamically allocating bitmap in udp_lib_get_port()
patch 6: add per-netns hash table
[0]: https://lore.kernel.org/netdev/20220908011022.45342-1-kuniyu@amazon.com/
[1]: https://lore.kernel.org/netdev/20220826000445.46552-1-kuniyu@amazon.com/
Kuniyuki Iwashima (6):
udp: Clean up some functions.
udp: Set NULL to sk->sk_prot->h.udp_table.
udp: Set NULL to udp_seq_afinfo.udp_table.
udp: Access &udp_table via net.
net: Do not ignore the error by sk->sk_prot->get_port().
udp: Introduce optional per-netns hash table.
Documentation/networking/ip-sysctl.rst | 27 ++++
include/linux/udp.h | 2 +
include/net/netns/ipv4.h | 3 +
net/core/filter.c | 4 +-
net/ipv4/af_inet.c | 4 +-
net/ipv4/inet_connection_sock.c | 7 +-
net/ipv4/ping.c | 2 +-
net/ipv4/sysctl_net_ipv4.c | 38 +++++
net/ipv4/udp.c | 212 ++++++++++++++++++++-----
net/ipv4/udp_diag.c | 6 +-
net/ipv4/udp_offload.c | 5 +-
net/ipv6/af_inet6.c | 4 +-
net/ipv6/udp.c | 31 ++--
net/ipv6/udp_offload.c | 5 +-
14 files changed, 281 insertions(+), 69 deletions(-)
--
2.30.2
Powered by blists - more mailing lists