OpenBSD cvs log

created 2018-11-29T14:33:07Z
begin 2018-04-30T00:00:00Z
end 2018-05-01T00:00:00Z
path src/sys
commits 4

date 2018-04-30T08:27:53Z
author mlarkin
files src/sys/arch/i386/include/vmmvar.h log diff annotate
message vmd(8): unbreak i386

date 2018-04-30T11:29:16Z
author visa
files src/sys/kern/subr_witness.c log diff annotate
message Treat all negative values of witness_watch equally for robustness.

date 2018-04-30T18:47:48Z
author kettenis
files src/sys/dev/acpi/bytgpio.c log diff annotate
message Use acpi_register_gpio() to register gpio space like we do for chvgpio(4).

ok mpi@

date 2018-04-30T19:07:44Z
author tb
files src/sys/dev/usb/if_umb.c log diff annotate
src/sys/netinet/in.c log diff annotate
src/sys/netinet/ip_mroute.c log diff annotate
message Reduce the scope of the NET_LOCK() in in_control(). Two functions were
protected: mrt_ioctl() and in_ioctl(). The former has no other callers
and only needs a read lock. The latter will need refactoring to reduce
the lock's scope further. In a first step, establish a single exit point
and protect most of the function body with the NET_LOCK() while removing
the NET_LOCK() from a handful of callers.

suggested by & ok mpi, ok visa