OpenBSD cvs log

created 2021-07-10T13:40:44Z
begin 2021-07-03T00:00:00Z
end 2021-07-04T00:00:00Z
path src/sys
commits 2

date 2021-07-03T10:21:38Z
author kettenis
files src/sys/arch/arm64/dev/ampintc.c log diff annotate
message Avoid spinning with interrupts disabled.

ok patrick@

date 2021-07-03T17:51:59Z
author semarie
files src/sys/kern/vfs_syscalls.c log diff annotate
message __realpath: removes LOCKLEAF from NDINIT.

The code doesn't doesn't need it: the returned vnode is released
immediately. The string path is built from the namei() call using
REALPATH, during directories traversal.

Without LOCKLEAF, calling vrele() only is enough if namei() found a
file, instead of calling VOP_UNLOCK() + vrele().

ok claudio@ mpi@