OpenBSD cvs log

created 2020-01-11T17:48:18Z
begin 2020-01-09T00:00:00Z
end 2020-01-10T00:00:00Z
path src/sys
commits 7

date 2020-01-09T00:58:28Z
author jsg
files src/sys/dev/pci/pcidevs log diff annotate
message add ADATA SX8200 Pro

from Dariusz Sendkowski
ok millert@ deraadt@

date 2020-01-09T00:59:15Z
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 2020-01-09T14:35:19Z
author mpi
files src/sys/dev/acpi/tipmic.c log diff annotate
src/sys/dev/i2c/iatp.c log diff annotate
src/sys/dev/ic/bwfm.c log diff annotate
src/sys/dev/ic/pgt.c log diff annotate
src/sys/dev/ic/rtwn.c log diff annotate
src/sys/dev/ic/z8530tty.c log diff annotate
src/sys/dev/pci/amdiic.c log diff annotate
src/sys/dev/pci/amdpm.c log diff annotate
src/sys/dev/pci/arc.c log diff annotate
src/sys/dev/pci/cz.c log diff annotate
src/sys/dev/pci/ichiic.c log diff annotate
src/sys/dev/pci/if_bwfm_pci.c log diff annotate
src/sys/dev/pci/if_tht.c log diff annotate
src/sys/dev/pci/piixpm.c log diff annotate
src/sys/dev/pci/viapm.c log diff annotate
message Convert sleeps of 1sec or more to tsleep_nsec(9).

ok bluhm@

date 2020-01-09T14:35:20Z
author mpi
files src/sys/dev/fdt/dwmmc.c log diff annotate
src/sys/dev/fdt/sximmc.c log diff annotate
src/sys/kern/tty.c log diff annotate
message Convert sleeps of 1sec or more to tsleep_nsec(9).

ok bluhm@

date 2020-01-09T14:36:26Z
author mpi
files src/sys/dev/usb/udl.c log diff annotate
src/sys/dev/usb/udl.h log diff annotate
message Rename udl_mode field to not shadow global `hz' variable.

ok mglocker@

date 2020-01-09T15:18:58Z
author bluhm
files src/sys/arch/amd64/amd64/db_trace.c log diff annotate
src/sys/arch/amd64/amd64/trap.c log diff annotate
src/sys/ddb/db_examine.c log diff annotate
message If the kernel panics due to SMEP or SMAP, print correct stack trace
and pass information to ddb. This helps to debug kernel NULL pointer
function calls.
input guenther@; OK kettenis@

date 2020-01-09T18:54:33Z
author anton
files src/sys/kern/sys_pipe.c log diff annotate
src/sys/sys/pipe.h log diff annotate
message Replace the global pipe_lock with a more fine-grained lock per pipe
pair. One lock per pipe pair is used to guarantee exclusive access to
both ends of a pipe.

Thanks to millert@ and tedu@ for the feedback and ok visa@