OpenBSD cvs log

created 2023-01-16T22:11:16Z
begin 2022-12-31T00:00:00Z
end 2023-01-01T00:00:00Z
path src/sys
commits 5

date 2022-12-31T00:30:21Z
author patrick
files src/sys/arch/arm64/include/cpu.h log diff annotate
message Add machdep.lidaction to machdep names list.

ok mpi@

date 2022-12-31T00:48:53Z
author cheloha
files src/sys/kern/kern_clockintr.c log diff annotate
message sysctl_clockintr: clear "sum" with memset before copyout(9)

date 2022-12-31T02:42:01Z
author aoyama
files src/sys/arch/luna88k/stand/boot/Attic/boot.c log diff annotate
message Let luna88k's bootloader pass RB_GOODRANDOM to the kernel.

Current bootloader can pass boothowto information to the kernel. It
also has the capability to load random seed data from /etc/random.seed
already. So set RB_GOODRANDOM at the bootloader when loadrandom() has
been finished successfully.

Now the kernel says "random: good seed from bootblocks".

Tested by LUNA-88K2 and nono emulator, "Absolutely!" ok miod@

date 2022-12-31T05:06:18Z
author gkoehler
files src/sys/arch/macppc/pci/vgafb.c log diff annotate
message Look for the first 2 mem regions, ignore the rest

Some macppc nvidia graphics cards have a 3rd mem region, but nv(4)
wants to mmap the 1st and 2nd regions.

ok miod@

date 2022-12-31T16:06:24Z
author cheloha
files src/sys/kern/kern_time.c log diff annotate
src/sys/kern/kern_timeout.c log diff annotate
src/sys/sys/timeout.h log diff annotate
message timeout: rename "timeout_at_ts" to "timeout_abs_ts"

I think "abs" ("absolute timeout") is a better mnemonic than
"at" ("at the given time").

The interface is undocumented and there are only two callers, so
renaming it is not a big deal.

probably ok kn@