OpenBSD cvs log

created 2022-08-04T07:56:13Z
begin 2022-07-30T00:00:00Z
end 2022-07-31T00:00:00Z
path src/sys
commits 3

date 2022-07-30T14:15:20Z
author kn
files src/sys/dev/pci/drm/i915/i915_drv.c log diff annotate
message Fix build without intagp

Pull inteldrm_refcnt out of NINTAGP > 0, otherwise it remains undefined but
still used in inteldrm_attachhook().

OK jsg

date 2022-07-30T17:56:54Z
author kettenis
files src/sys/arch/arm64/dev/efi.c log diff annotate
message Kill virtual address randomization for the EFI runtime. It was a neat idea
but it appears to be too fragile and now that we are using a 48-bit VA space
for the EFI runtime we no longer need to call SetVirtualAddressMap() to
make address fit into our pmap. Unbreaks the x13s.

ok mlarkin@, patrick@

date 2022-07-30T21:06:54Z
author patrick
files src/sys/arch/arm64/stand/efiboot/Makefile log diff annotate
src/sys/arch/arm64/stand/efiboot/conf.c log diff annotate
src/sys/arch/arm64/stand/efiboot/start.S log diff annotate
message Now that we have proper .text and .data sections we need to move dt_blob to
.data. dt_blob is a basic device tree that is populated from ACPI tables
when booting with ACPI instead of DT. Since we're modifying its content we
need to put it somewhere writeable.

Found and proposed by mlarkin@
ok kettenis@ mlarkin@