OpenBSD cvs log

created 2024-08-31T22:26:16Z
begin 2024-08-26T00:00:00Z
end 2024-08-27T00:00:00Z
path src/sys
commits 5

date 2024-08-26T03:37:56Z
author jsg
files src/sys/arch/arm64/arm64/pmap.c log diff annotate
message replace multiple '.arch armv8.3-a' with a pauth target attribute
'no objection' kettenis@

date 2024-08-26T08:24:25Z
author mvs
files src/sys/kern/kern_sysctl.c log diff annotate
message style(9) fix. No functional changes.

date 2024-08-26T13:55:14Z
author bluhm
files src/sys/netinet/tcp_input.c log diff annotate
message Rearrange #ifdef TCP_SIGNATURE to keep braces balanced.

date 2024-08-26T19:24:02Z
author sf
files src/sys/dev/pv/if_vio.c log diff annotate
message vio(4): Fix hardmtu without MRG_RXBUF

Without VIRTIO_NET_F_MRG_RXBUF, we cannot chain several buffers together
and we can only receive packets up to the length of the buffers we put
into the ring.

OK bluhm@

date 2024-08-26T19:37:54Z
author sf
files src/sys/dev/fdt/virtio_mmio.c log diff annotate
src/sys/dev/pci/virtio_pci.c log diff annotate
src/sys/dev/pv/if_vio.c log diff annotate
src/sys/dev/pv/vioblk.c log diff annotate
src/sys/dev/pv/viocon.c log diff annotate
src/sys/dev/pv/viogpu.c log diff annotate
src/sys/dev/pv/viomb.c log diff annotate
src/sys/dev/pv/viornd.c log diff annotate
src/sys/dev/pv/vioscsi.c log diff annotate
src/sys/dev/pv/virtiovar.h log diff annotate
src/sys/dev/pv/vmmci.c log diff annotate
message virtio: Introduce dedicated attach args

Instead of abusing virtio_softc as attach args, create a separate
struct. Use it to pass the number of available interrupts. This will be
useful for vio(4) multi-queue support.

ok jan@