OpenBSD cvs log

created 2019-01-30T12:58:28Z
begin 2019-01-13T00:00:00Z
end 2019-01-14T00:00:00Z
path src/sys
commits 6

date 2019-01-13T14:27:15Z
author mpi
files src/sys/dev/usb/if_ral.c log diff annotate
src/sys/dev/usb/if_ralreg.h log diff annotate
message Validate that the interface passed to *match() is the expected one
instead of calling usbd_device2interface_handle() during *attach().

ok stsp@

date 2019-01-13T14:30:16Z
author mpi
files src/sys/dev/usb/ubcmtp.c log diff annotate
message Validate the number of expected interfaces in *match() and claim them
during *attach().

This allows us to get rid of two calls to usbd_device2interface_handle()
that could fail later.

ok ratchov@, jcs@

date 2019-01-13T14:31:55Z
author mpi
files src/sys/net/pfkeyv2.c log diff annotate
src/sys/net/pfkeyv2_convert.c log diff annotate
message Fix an off-by-one in pfkeyv2_sysctl_policydumper() and get rid of a
workaround for this bug.

ok visa@

date 2019-01-13T16:38:43Z
author visa
files src/sys/arch/octeon/dev/octmmc.c log diff annotate
message Pass timeout in seconds instead of ticks.

date 2019-01-13T16:45:44Z
author visa
files src/sys/arch/octeon/dev/octmmc.c log diff annotate
message Handle card detect GPIO.

date 2019-01-13T22:57:37Z
author kn
files src/sys/dev/pci/if_iwn.c log diff annotate
message Remove redundant RF switch notice

Toggling the hardware switch already gets communicated through
"iwn0: RF switch: radio disabled" and "iwn0: RF switch: radio enabled"
so stating in between that the transmitter is turned off does not provide
any further information.

iwn_stop() effects the RUNNING flag and controls power, but does not
pull the interface up or down, so adjust the misleading comment while
here.

OK stsp, tested by sashan