OpenBSD cvs log

created 2020-01-31T15:03:08Z
begin 2020-01-26T00:00:00Z
end 2020-01-27T00:00:00Z
path src/sys
commits 15

date 2020-01-26T00:11:42Z
author jsg
files src/sys/dev/acpi/amdgpio.c log diff annotate
message In amdgpio_pin_intr() disable pins a pending interrupt is seen for which
have no interrupt handler registered.

Avoids interrupt storm on Matebook D reported by brynet@
From James Hastings. ok kettenis@ brynet@

date 2020-01-26T00:53:31Z
author krw
files src/sys/arch/sparc64/dev/vdsk.c log diff annotate
src/sys/dev/ata/atascsi.c log diff annotate
src/sys/dev/ic/adv.c log diff annotate
src/sys/dev/ic/adw.c log diff annotate
src/sys/dev/ic/ami.c log diff annotate
src/sys/dev/ic/cac.c log diff annotate
src/sys/dev/ic/ciss.c log diff annotate
src/sys/dev/ic/gdt_common.c log diff annotate
src/sys/dev/ic/gdtvar.h log diff annotate
src/sys/dev/ic/iha.c log diff annotate
src/sys/dev/ic/mfi.c log diff annotate
src/sys/dev/ic/trm.c log diff annotate
src/sys/dev/ic/twe.c log diff annotate
src/sys/dev/ic/twevar.h log diff annotate
src/sys/dev/ic/uha.c log diff annotate
src/sys/dev/isa/wds.c log diff annotate
src/sys/dev/pv/hvs.c log diff annotate
src/sys/dev/pv/vioblk.c log diff annotate
src/sys/dev/pv/xbf.c log diff annotate
src/sys/dev/sdmmc/sdmmc_scsi.c log diff annotate
src/sys/dev/usb/umass_scsi.c log diff annotate
src/sys/scsi/cd.c log diff annotate
src/sys/scsi/mpath.c log diff annotate
src/sys/scsi/scsiconf.h log diff annotate
src/sys/scsi/sd.c log diff annotate
src/sys/scsi/st.c log diff annotate
message Shuffle some names around to make reading the code less headache
inducing. Rename scsi_adapter member 'scsi_minphys' to 'dev_minphys'
to reflect what it is supposed to do. Use consistent naming convention
(<dev>_minphys) for the actual device functions.

No functional change.

date 2020-01-26T01:11:19Z
author kettenis
files src/sys/arch/arm64/arm64/vm_machdep.c log diff annotate
message Fix spacing issue.

date 2020-01-26T01:11:50Z
author kettenis
files src/sys/arch/arm64/arm64/syscall.c log diff annotate
message Fix comment.

date 2020-01-26T04:22:36Z
author tedu
files src/sys/kern/vfs_bio.c log diff annotate
message invert some if logic to shortcircuit some loops and reduce nesting.
no function change.

date 2020-01-26T04:23:55Z
author tedu
files src/sys/arch/sparc64/dev/vdsk.c log diff annotate
message vsdk -> vdsk in a panic message

date 2020-01-26T04:26:46Z
author tedu
files src/sys/arch/macppc/stand/Makefile log diff annotate
message try disconnecting old world boot.mac bootloader for a bit

date 2020-01-26T04:28:18Z
author tedu
files src/sys/kern/syscalls.master log diff annotate
src/sys/kern/vfs_syscalls.c log diff annotate
message add a new __tmpfd system call that creates a new unnamed file in /tmp.
intended for shm/fd passing, but for programs that may otherwise like
filesystem access.
ok beck deraadt kettenis

date 2020-01-26T04:29:17Z
author tedu
files src/sys/kern/init_sysent.c log diff annotate
src/sys/kern/syscalls.c log diff annotate
src/sys/sys/syscall.h log diff annotate
src/sys/sys/syscallargs.h log diff annotate
message regen

date 2020-01-26T06:20:30Z
author patrick
files src/sys/arch/arm64/conf/GENERIC log diff annotate
src/sys/dev/fdt/files.fdt log diff annotate
src/sys/dev/fdt/simplepanel.c log diff annotate
message Add simplepanel(4), a driver for simple display panels. This one
is good enough to enable the Pinebook Pro's panel.

It would be nice to make use of the DRM's BSD-licensed panel code,
which has an extensive list of panels and its settings.

ok kettenis@

date 2020-01-26T08:03:37Z
author patrick
files src/sys/dev/pci/drm/drm_bridge.c log diff annotate
message Pull in drm_bridge.c from linux 4.19.y.

ok jsg@

date 2020-01-26T09:39:36Z
author djm
files src/sys/netinet/ip.h log diff annotate
message add define for IPTOS_DSCP_LE; "low effort" DSCP codepoint standardised
in RFC8622; ok job@

date 2020-01-26T23:04:41Z
author patrick
files src/sys/dev/fdt/pwmbl.c log diff annotate
message The enable-gpios property is an optional property, so don't error out if
it's not there. This allows pwmbl(4) to attach and work on the Pinebook
Pro.

date 2020-01-26T23:05:47Z
author patrick
files src/sys/dev/fdt/pwmbl.c log diff annotate
message Set the default brightness level upon attach.

date 2020-01-26T23:06:39Z
author krw
files src/sys/kern/kern_physio.c log diff annotate
message Use long for temporary variables handling b_bcount values in physio().

Add a KASSERTMSG() to check that strategy functions didn't screw
b_resid up too much.

ok beck@ tedu@