OpenBSD cvs log

created 2020-03-07T18:59:48Z
begin 2020-03-01T00:00:00Z
end 2020-03-02T00:00:00Z
path src/sys
commits 8

date 2020-03-01T10:18:19Z
author kettenis
files src/sys/dev/fdt/rkiic.c log diff annotate
message Implement support for read transfers larger than 32 bytes. Register the
i2c bus like we do for mviic(4) such that we can access it from other
drivers. This will be used for HDMI support on the near future.

tested by otto@, kurt@
ok patrick@

date 2020-03-01T10:19:35Z
author kettenis
files src/sys/dev/fdt/rkanxdp.c log diff annotate
message Handle pinctrl and reset.

ok patrick@

date 2020-03-01T14:10:56Z
author krw
files src/sys/dev/ic/nvme.c log diff annotate
src/sys/dev/ic/nvmevar.h log diff annotate
message Use ffs() on sc_mps, removing need for sc_mps_bits. Replace ffs(64)-1
and ffs(16)-1 with the constant results (i.e. 6 and 4). Add comments
to clarify use of these constants. Net result, one less invocation of
ffs(), softc smaller by one u_int, and less potential confusion over
'mps'.

No functional change.

date 2020-03-01T15:04:48Z
author otto
files src/sys/arch/armv7/stand/efiboot/Makefile log diff annotate
src/sys/arch/armv7/stand/efiboot/conf.c log diff annotate
message Allow armv7 efiboot(8) to read from an ffs2 filesystem. ok kettenis@

date 2020-03-01T17:57:33Z
author kettenis
files src/sys/dev/fdt/rkclock.c log diff annotate
message Make it possible to set the VPLL clock frequency and add a few more PLL clock
frequencies that are needed for HDMI support.

ok patrick@

date 2020-03-01T18:00:12Z
author kettenis
files src/sys/dev/ofw/ofw_misc.c log diff annotate
message When activating a video port, don't bail out if activating an endpoint
fails. Not reporting an error in that case isn't ideal, but this gets
us a bit further along in supporting drm(4) on RK3399 SoCs.

ok patrick@

date 2020-03-01T18:50:52Z
author mpi
files src/sys/kern/kern_exit.c log diff annotate
message Do not reparent a traced child to ourself inside wait(2).

When a traced process _exit(2)s, its (tracing) parent tries to give it
back to the old parent. In the case where the old parent is the same
as the tracing parent, there's no need to do this dance, so simply
remove it from the list of zombies and free its descriptors.

Fix a double report via wait(2) exposed by recent changes in make and
newly imported ptrace(2) regression from NetBSD & FreeBSD.

Diagnosed with help from espie@ & guenther@.

ok claudio@, visa@

date 2020-03-01T23:49:26Z
author deraadt
files src/sys/dev/rnd.c log diff annotate
message rename functions and types unrelated to the higher-level arc4 API
ok djm markus