OpenBSD cvs log

created 2025-03-22T17:15:57Z
begin 2025-03-16T00:00:00Z
end 2025-03-17T00:00:00Z
path src/sys
commits 2

date 2025-03-16T21:58:08Z
author bluhm
files src/sys/net/route.h log diff annotate
message Split union RT_gw into separate struct rtentry fields.

The union of rt_gwroute and rt_cachecnt makes debugging harder. In
theory the RTF_GATEWAY flag distinguishes which field is relevant,
but that does not help when hunting bugs and races in this area.
The benefit of saving 4 bytes in struct rtentry is minimal.
Break up the RT_gw union. To keep memory compact, sort pointers
to the beginning and integres to the end of struct rtentry.

OK mvs@

date 2025-03-16T23:45:06Z
author bluhm
files src/sys/net/route.c log diff annotate
src/sys/netinet6/nd6_rtr.c log diff annotate
message Grab kenel lock when deleting a route.

Shortly before release, it is better to throw a kernel lock around
calls to rtrequest_delete(). This function modifies struct rtentry
fields documented with exclusive net lock, or shared net lock plus
kernel lock. By now TCP timers doing path MTU discovery hold shared
net lock only. After 7.7 release we can figure out which fine
grained locking is needed.

OK mvs@