OpenBSD cvs log

created 2018-11-29T22:47:49Z
begin 2018-06-26T00:00:00Z
end 2018-06-27T00:00:00Z
path src/sys
commits 6

date 2018-06-26T06:52:58Z
author kettenis
files src/sys/dev/acpi/acpi.c log diff annotate
src/sys/dev/acpi/acpivar.h log diff annotate
src/sys/dev/acpi/sdhc_acpi.c log diff annotate
message Let acpi(4) pass down the bus dma tag.

ok deraadt@

date 2018-06-26T07:38:39Z
author mlarkin
files src/sys/dev/acpi/acpi.c log diff annotate
message knf

date 2018-06-26T10:00:09Z
author kettenis
files src/sys/arch/arm/arm/ast.c log diff annotate
message Make ast() call refreshcreds(). Tweak this code to be similar to the amd64.

ok phessler@, guenther@

date 2018-06-26T14:43:01Z
author visa
files src/sys/kern/kern_descrip.c log diff annotate
message Remove a duplicate fd_used() call. The new file descriptor passed
to dupfdopen() has already been registered with fd_used() in fdalloc().

The duplicate call distorted the number of open file descriptors
returned by getdtablecount(2) if a file was opened via /dev/fd/.

While there, assert that the file instance should already be in the
file list.

OK mpi@

date 2018-06-26T14:45:16Z
author visa
files src/sys/kern/subr_witness.c log diff annotate
message Make the system cache a small number of free lock list entries per CPU.
This reduces the contention of the `w_mtx' lock.

OK mpi@

date 2018-06-26T19:43:27Z
author kettenis
files src/sys/arch/sparc64/stand/ofwboot/Locore.c log diff annotate
src/sys/arch/sparc64/stand/ofwboot/diskprobe.c log diff annotate
src/sys/arch/sparc64/stand/ofwboot/openfirm.h log diff annotate
message The disk specification in an Open Firmware device path depends on the bus
binding for the disk interface. For traditional SCSI is is simply a number;
i.e. the disk at target 0 is specified by @0. For SAS there are several
options but newer Oracle firmware no longer accepts the traditional SCSI
target specification. The best alternative is the PHY number and the disk
at PHY number 0 is specified by @p0. To determine which binding to use,
we look up the device_type of the parent. If that is "scsi-sas", use the
PHY number instead of the SCSI target.

Fixes booting from softraid on SPARC T3 and later.

ok claudio@, stsp@