OpenBSD cvs log

created 2025-01-04T19:04:21Z
begin 2024-12-28T00:00:00Z
end 2024-12-29T00:00:00Z
path src/sys
commits 3

date 2024-12-28T00:00:32Z
author aoyama
files src/sys/arch/luna88k/luna88k/disksubr.c log diff annotate
message Revive calling checkdisklabel().

It is turned out that this is needed for RAMDISK kernel to find 'a' partition
of rd0.

ok krw@ miod@

date 2024-12-28T20:34:05Z
author mvs
files src/sys/kern/kern_sig.c log diff annotate
src/sys/kern/kern_sysctl.c log diff annotate
message Unlock KERN_NOSUIDCOREDUMP.

`nosuidcoredump' is atomically accessed integer. coredump() reads it
multiple times, so cache value to `nosuidcoredump_local'.

ok bluhm

date 2024-12-28T22:17:09Z
author bluhm
files src/sys/netinet/tcp_input.c log diff annotate
src/sys/netinet/tcp_output.c log diff annotate
src/sys/netinet/tcp_subr.c log diff annotate
src/sys/netinet/tcp_timer.c log diff annotate
src/sys/netinet/tcp_timer.h log diff annotate
src/sys/netinet/tcp_var.h log diff annotate
message Read more TCP sysctl variables atomically.

OK mvs@