OpenBSD cvs log

created 2024-04-24T07:00:36Z
begin 2024-03-01T00:00:00Z
end 2024-03-02T00:00:00Z
path src/sys
commits 5

date 2024-03-01T06:18:00Z
author jsg
files src/sys/dev/pci/drm/i915/i915_pci.c log diff annotate
message Don't match dg2. The cards use paths unused by integrated graphics.
Likely doesn't work.

date 2024-03-01T08:34:42Z
author jsg
files src/sys/dev/pci/pcidevs log diff annotate
message more Red Hat and Qumranet devices seen with QEMU and KVM

date 2024-03-01T08:35:23Z
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 2024-03-01T14:15:01Z
author bluhm
files src/sys/kern/uipc_syscalls.c log diff annotate
message Protect pool_get() with kernel lock in sys_ypconnect().

Pool namei_pool is initialized with IPL_NONE as filesystem always
runs with kernel lock. So pool_get() needs kernel lock also in
sys_ypconnect().

OK kn@ deraadt@

date 2024-03-01T15:57:43Z
author kettenis
files src/sys/arch/arm64/arm64/cpu.c log diff annotate
message Reduce dmesg spam by only printing the CPU feature flags when they differ
from the previous one. Since CPU cores are typically grouped in clusters
of identical cores and are typically enumerated this results in flags
being printed for the first core of a cluster. But only if the clusters
use cores that implement different features which is rare.

ok deraadt@