ipv6/addrconf: switch to per netns inet6_addr_lst hash table
Eric Dumazet authored

IPv6 does not scale very well with the number of IPv6 addresses.
It uses a global (shared by all netns) hash table with 256 buckets.

Some functions like addrconf_verify_rtnl() and addrconf_ifdown()
have to iterate all addresses in the hash table.

I have seen addrconf_verify_rtnl() holding the cpu for 10ms or more.

Switch to the per netns hashtable (and spinlock) added
in prior patches.

This considerably speeds up netns dismantle times on hosts
with thousands of netns. This also has an impact
on regular (fast path) IPv6 processing.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Reviewed-by: default avatarDavid Ahern <dsahern@kernel.org>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
e66d1172
Name Last commit Last update
Documentation Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
LICENSES LICENSES/LGPL-2.1: Add LGPL-2.1-or-later as valid identifiers
arch Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
block block: add bio_start_io_acct_time() to control start_time
certs certs: Fix build error when CONFIG_MODULE_SIG_KEY is empty
crypto lib/crypto: add prompts back to crypto libraries
drivers et131x: support arbitrary MAX_SKB_FRAGS
fs Merge tag 'nfsd-5.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux
include ipv6/addrconf: use one delayed work per netns
init net: initialize init_net earlier
ipc proc: remove PDE_DATA() completely
kernel Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
lib ref_tracker: remove filter_irq_stacks() call
mm Revert "mm/gup: small refactoring: simplify try_grab_page()"
net ipv6/addrconf: switch to per netns inet6_addr_lst hash table
samples Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
scripts Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
security Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
sound proc: remove PDE_DATA() completely
tools ipv4: Reject routes specifying ECN bits in rtm_tos
usr kbuild: remove include/linux/cyclades.h from header file check
virt Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
.clang-format genirq/msi: Make interrupt allocation less convoluted
.cocciconfig scripts: add Linux .cocciconfig for coccinelle
.get_maintainer.ignore Opt out of scripts/get_maintainer.pl
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.