Run raw IP input in parallel.
authorbluhm <bluhm@openbsd.org>
Sun, 14 Apr 2024 20:46:27 +0000 (20:46 +0000)
committerbluhm <bluhm@openbsd.org>
Sun, 14 Apr 2024 20:46:27 +0000 (20:46 +0000)
commit7019ae976ad91f2bc281f67a336deb30aa8168c1
tree63eef2e8db49c72afc5edb98512ff0c15bc2c139
parentd00b7f603c5fc8ad53b75772b6ba7e4b590fcc51
Run raw IP input in parallel.

Running raw IPv4 input with shared net lock in parallel is less
complex than UDP.  Especially there is no socket splicing.

New ip_deliver() may run with shared or exclusive net lock.  The
last parameter indicates the mode.  If is is running with shared
netlock and encounters a protocol that needs exclusive lock, the
packet is queued.  Old ip_ours() always queued the packet.  Now it
calls ip_deliver() with shared net lock, and if that cannot handle
the packet completely, the packet is queued and later processed
with exclusive net lock.

In case of an IPv6 header chain, that switches from shared to
exclusive processing, the next protocol and mbuf offset are stored
in a mbuf tag.

OK mvs@
sys/net/if_bridge.c
sys/netinet/in_proto.c
sys/netinet/ip_input.c
sys/netinet/ip_var.h
sys/netinet6/ip6_input.c
sys/sys/mbuf.h
sys/sys/protosw.h