OpenBSD cvs log

created 2019-06-15T13:24:12Z
begin 2019-06-14T00:00:00Z
end 2019-06-15T00:00:00Z
path src/sys
commits 11

date 2019-06-14T03:40:55Z
author jmatthew
files src/sys/dev/pci/if_mcx.c log diff annotate
message Add a barrier after arming a completion queue. If multiple cqs are using
the same uar page, these writes could be combined, which would result in
a queue not being armed.

date 2019-06-14T05:52:42Z
author deraadt
files src/sys/sys/syscall_mi.h log diff annotate
message The addition of writeable-syscall checking near MAP_STACK checking
damaged the error messages. Repair that, passing distinct format
strings for the two cases.
ok beck

date 2019-06-14T05:52:43Z
author deraadt
files src/sys/uvm/uvm_map.c log diff annotate
src/sys/uvm/uvm_map.h log diff annotate
message The addition of writeable-syscall checking near MAP_STACK checking
damaged the error messages. Repair that, passing distinct format
strings for the two cases.
ok beck

date 2019-06-14T07:02:55Z
author jmatthew
files src/sys/dev/pci/if_mcx.c log diff annotate
message Only add and remove flow table entries for multicast while the interface is
up, and re-add flow table entries for all existing multicast groups when
bringing the interface up.

date 2019-06-14T11:40:36Z
author jsg
files src/sys/dev/pci/pcidevs log diff annotate
message more Intel Apollo Lake ids
from James Hastings

date 2019-06-14T11:41:34Z
author jsg
files src/sys/dev/pci/pcidevs.h log diff annotate
src/sys/dev/pci/pcidevs_data.h log diff annotate
message regen

date 2019-06-14T11:44:17Z
author jsg
files src/sys/dev/pci/dwiic_pci.c log diff annotate
message match on Intel Apollo Lake ids
from James Hastings

date 2019-06-14T11:57:16Z
author kn
files src/sys/dev/usb/if_urtw.c log diff annotate
message Use timeout_add_msec(9)

The timeval is used to represent 100ms, which are converted to Hz so they
can be converted back - simplify this by using the new ms interface
directly.

Tested and OK kevlo

date 2019-06-14T13:20:49Z
author kn
files src/sys/dev/usb/if_upgt.c log diff annotate
message Use timeout_add_msec(9)

UPGT_LED_ACTION_TMP_DUR is 100ms, avoid converting to Hz and back again.

OK kevlo

date 2019-06-14T18:12:55Z
author cheloha
files src/sys/dev/fdt/imxuart.c log diff annotate
message timeout_add(9)+hz(9) -> timeout_add_sec(9); ok patrick@

date 2019-06-14T18:13:55Z
author kettenis
files src/sys/arch/amd64/amd64/identcpu.c log diff annotate
src/sys/arch/amd64/include/specialreg.h log diff annotate
src/sys/arch/i386/i386/machdep.c log diff annotate
src/sys/arch/i386/include/specialreg.h log diff annotate
message Add TSC_ADJUST CPUID flag.

ok deraadt@, mlarkin@