OpenBSD cvs log

created 2021-10-26T03:39:09Z
begin 2021-10-25T00:00:00Z
end 2021-10-26T00:00:00Z
path src/sys
commits 10

date 2021-10-25T09:47:02Z
author tobhe
files src/sys/netinet/ip_ah.c log diff annotate
message Fix use of uninitialized variable 'rpl'.

Found by jsg@
ok patrick@

date 2021-10-25T10:24:54Z
author claudio
files src/sys/kern/kern_descrip.c log diff annotate
src/sys/kern/vfs_subr.c log diff annotate
src/sys/kern/vfs_vnops.c log diff annotate
src/sys/sys/file.h log diff annotate
message Revert commitid: ufM9BcSbXqfLpzBH;
Move vfs_stall_barrier() from the fd layer into vn_lock() and the vfs layer.
In some cases it can result in a deadlock while suspending.
Discussed with mpi@ and deraadt@

date 2021-10-25T14:53:15Z
author sthen
files src/sys/arch/amd64/conf/GENERIC log diff annotate
message typos in comments, from jj, reported by Elyes Haouas on irc

date 2021-10-25T14:53:16Z
author sthen
files src/sys/arch/i386/conf/GENERIC log diff annotate
message typos in comments, from jj, reported by Elyes Haouas on irc

date 2021-10-25T15:59:46Z
author patrick
files src/sys/lib/libsa/netif.c log diff annotate
src/sys/lib/libsa/tftp.c log diff annotate
message Remove unused variables to silence clang.

ok kettenis@

date 2021-10-25T16:00:12Z
author bluhm
files src/sys/netinet/ip_ipsp.c log diff annotate
message Protect the tdb hashes with a mutex. Move initialization out of
the processing path. If rehashing fails due to low memory, just
keep the old hash buckets.
OK tobhe@

date 2021-10-25T17:15:29Z
author jasper
files src/sys/dev/dt/dt_prov_kprobe.c log diff annotate
src/sys/dev/dt/dtvar.h log diff annotate
message remove dtp_mtx which protected dtp_ref; the code is always called with KERNEL_LOCK() held

discussed with and OK mpi@

date 2021-10-25T18:25:01Z
author bluhm
files src/sys/net/pfkeyv2.c log diff annotate
src/sys/netinet/ip_ipsp.c log diff annotate
src/sys/netinet/ip_ipsp.h log diff annotate
message Call a locked variant of tdb_unlink() from tdb_walk(). Fixes a
mutex locking against myself panic introduced by my previous commit.
OK beck@ patrick@

date 2021-10-25T19:51:12Z
author millert
files src/sys/dev/dt/dt_dev.c log diff annotate
message remove dtp_mtx which protected dtp_ref; the code is always called with KERNEL_LOCK() held

date 2021-10-25T22:20:47Z
author bluhm
files src/sys/netinet/in_pcb.c log diff annotate
message The implementation of ipsp_spd_inp() is side effect free. It may
set the error output parameter or return a tdb. Both are ignored
in in_pcbconnect(). Remove the code that does nothing.
OK tobhe@ jca@ mvs@