OpenBSD cvs log

created 2024-11-23T19:23:29Z
begin 2024-11-18T00:00:00Z
end 2024-11-19T00:00:00Z
path src/sys
commits 4

date 2024-11-18T00:22:24Z
author jsg
files src/sys/dev/pci/drm/amd/amdkfd/kfd_chardev.c log diff annotate
src/sys/dev/pci/drm/amd/amdkfd/kfd_priv.h log diff annotate
src/sys/dev/pci/drm/amd/amdkfd/kfd_process.c log diff annotate
src/sys/dev/pci/drm/amd/amdkfd/kfd_svm.c log diff annotate
message drm/amdkfd: Accounting pdd vram_usage for svm

From Philip Yang
4c332037fcbb9bb53c46ba4f156951429acc4d97 in linux-6.6.y/6.6.62
68d26c10ef503175df3142db6fcd75dd94860592 in mainline linux

date 2024-11-18T02:32:22Z
author mlarkin
files src/sys/arch/amd64/stand/libsa/memprobe.c log diff annotate
src/sys/arch/amd64/stand/mbr/mbr.S log diff annotate
src/sys/arch/i386/stand/libsa/memprobe.c log diff annotate
src/sys/arch/i386/stand/mbr/mbr.S log diff annotate
message Fix some typos in comments in i386/amd64 bootblocks

Also fix some trailing whitespace in comments.

From Christian Schulte, thanks

date 2024-11-18T05:32:39Z
author jsg
files src/sys/arch/arm64/arm64/Attic/arm64var.h log diff annotate
src/sys/arch/arm64/arm64/machdep.c log diff annotate
src/sys/arch/arm64/dev/mainbus.c log diff annotate
src/sys/arch/arm64/include/bus.h log diff annotate
src/sys/arch/riscv64/dev/mainbus.c log diff annotate
src/sys/arch/riscv64/include/bus.h log diff annotate
src/sys/arch/riscv64/include/Attic/riscv64var.h log diff annotate
src/sys/arch/riscv64/riscv64/machdep.c log diff annotate
message move bus space extern to bus.h; ok mpi@

date 2024-11-18T08:42:53Z
author mvs
files src/sys/arch/alpha/alpha/mem.c log diff annotate
src/sys/arch/amd64/amd64/mem.c log diff annotate
src/sys/arch/arm/arm/mem.c log diff annotate
src/sys/arch/arm64/arm64/mem.c log diff annotate
src/sys/arch/hppa/hppa/mem.c log diff annotate
src/sys/arch/i386/i386/mem.c log diff annotate
src/sys/arch/m88k/m88k/mem.c log diff annotate
src/sys/arch/macppc/macppc/mem.c log diff annotate
src/sys/arch/mips64/mips64/mem.c log diff annotate
src/sys/arch/powerpc64/powerpc64/mem.c log diff annotate
src/sys/arch/riscv64/riscv64/mem.c log diff annotate
src/sys/arch/sh/sh/mem.c log diff annotate
src/sys/arch/sparc64/sparc64/mem.c log diff annotate
src/sys/kern/kern_sysctl.c log diff annotate
message Cast atomic_load_int(9) to signed int when loading `securelevel'.

The return value of atomic_load_int(9) is unsigned so needs a cast,
otherwise securelevel=-1 gets misrepresented.

From Paul Fertser.