OpenBSD cvs log

created 2022-06-19T00:11:55Z
begin 2022-06-16T00:00:00Z
end 2022-06-17T00:00:00Z
path src/sys
commits 5

date 2022-06-16T10:35:45Z
author claudio
files src/sys/net/rtsock.c log diff annotate
message Mark routes sent via sysctl(2) with RTF_DONE like it is done on the
route socket. All messages passed are by definition done. This may
allow to share more code between sysctl and route socket parsers.
OK mpi@

date 2022-06-16T20:44:09Z
author kettenis
files src/sys/arch/arm64/dev/agintc.c log diff annotate
message The 64-core versions of the Ampere Altra SoC still have 80 redistributors.
Presumably these are the same silicon and the 64-core version just has some
of the cores disabled. This means that the redistributors don't necessarily
all match up with a core that is actually enabled. So remove the panic
that would happen if we found a redistributor without a matching core.

ok patrick@, deraadt@

date 2022-06-16T20:45:42Z
author kettenis
files src/sys/arch/arm64/include/cpu.h log diff annotate
message Bump MAXCPUS to 256, which is the maximum number of cores on a dual socket
machine with Ampere Altra Max CPUs. OpenBSD should run on such a machine
now.

ok patrick@, deraadt@

date 2022-06-16T20:47:26Z
author sashan
files src/sys/net/pf_table.c log diff annotate
message pfctl reports existing table as being added. glitch has
been spotted and reported by jmc@

OK kn@

date 2022-06-16T20:52:38Z
author bru
files src/sys/dev/hid/hidms.c log diff annotate
message Add boundary checks to hidms_setup.

Thanks to Sven M. Hallberg.