CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/01/31 04:44:47
Modified files:
sys/netinet6 : nd6.c
Log message:
Unlock nd6_nud_hint().
nd6_nud_hint() required exclusive net lock. This can be switched
to shared net lock in combination with the nd6 mutex. Currently
this means a slight 1.5% decrease in TCP throughput. An additional
mutex is entered which causes some cost although it has no contention.
This step necessary to prepare tcp_input() for parallel processing.
OK mvs@
