OpenBSD cvs log

created 2019-07-09T07:18:26Z
begin 2019-06-24T00:00:00Z
end 2019-06-25T00:00:00Z
path src/sys
commits 12

date 2019-06-24T02:49:19Z
author mlarkin
files src/sys/arch/amd64/amd64/vmm.c log diff annotate
message vmm(4) - whitespace removal

date 2019-06-24T02:52:58Z
author mlarkin
files src/sys/arch/amd64/stand/libsa/diskprobe.c log diff annotate
message Remove a 15 year old #if 0 and wrap a long line (KNF)

date 2019-06-24T06:45:06Z
author claudio
files src/sys/dev/usb/usb_subr.c log diff annotate
message Don't retry to get the usb descriptor in usbd_new_device() if the call
timed out. If usbd_get_desc() returns USBD_TIMEOUT the chance is high
that the next call will do the same and it slows down attachement of
devices a lot. Makes reattaching USB at resume a lot faster with my
umb(4) card (which likes to time out).
"move fast and fix things" deraadt@

date 2019-06-24T12:49:03Z
author visa
files src/sys/kern/kern_resource.c log diff annotate
message Guard uvm_map_protect() with kernel lock to prepare dosetrlimit()
for unlocking.

OK semarie@ mpi@ deraadt@ anton@

date 2019-06-24T12:49:54Z
author visa
files src/sys/kern/syscalls.master log diff annotate
message Unlock getrlimit(2) and setrlimit(2).

OK semarie@ mpi@ deraadt@ anton@

date 2019-06-24T12:51:04Z
author visa
files src/sys/kern/init_sysent.c log diff annotate
src/sys/kern/syscalls.c log diff annotate
message regen

date 2019-06-24T12:51:05Z
author visa
files src/sys/sys/syscall.h log diff annotate
src/sys/sys/syscallargs.h log diff annotate
message regen

date 2019-06-24T13:43:19Z
author mpi
files src/sys/net/if_pppx.c log diff annotate
message free(9) sizes.

ok kn@

date 2019-06-24T13:59:36Z
author visa
files src/sys/arch/octeon/conf/Makefile.octeon log diff annotate
message Add option to build octeon kernels using clang.

date 2019-06-24T21:33:27Z
author kettenis
files src/sys/arch/amd64/conf/GENERIC log diff annotate
src/sys/arch/amd64/conf/RAMDISK_CD log diff annotate
src/sys/dev/acpi/files.acpi log diff annotate
src/sys/dev/acpi/glkgpio.c log diff annotate
message Add glkgpio(4), a driver for the GPIO controllers found on Intel's Gemini
Lake SoC. From James Hastings.

date 2019-06-24T21:36:53Z
author kn
files src/sys/net/if_sppp.h log diff annotate
src/sys/net/if_spppsubr.c log diff annotate
message Use timeout_add_sec(9)

Re-challenge timeouts are made up of single scalar factors which are
multiplied with the time unit lcp.timeout to compute the timeout period.

Simply reduce that unit of 1 * hz [ticks] to 1 [s] and use the appropiate
API.

OK mpi

date 2019-06-24T22:26:25Z
author bluhm
files src/sys/net/route.c log diff annotate
message Since the recent recursion fix in rtable_walk(), deleting an interface
address could trigger the "rt->rt_ifidx == ifp->if_index" assertion.
In rtflushclone() the ifp that is passed to rtdeletemsg() has been
changed from the route interface to the ifa interface. Restore the
old behavior and get the route ifp.
found by regress/sys/netinet/carp; OK mpi@