OpenBSD cvs log

created 2025-03-05T05:40:51Z
begin 2025-03-01T00:00:00Z
end 2025-03-02T00:00:00Z
path src/sys
commits 6

date 2025-03-01T07:42:09Z
author miod
files src/sys/arch/arm64/arm64/intr.c log diff annotate
src/sys/arch/arm64/arm64/trap.c log diff annotate
src/sys/arch/armv7/armv7/intr.c log diff annotate
src/sys/arch/riscv64/riscv64/intr.c log diff annotate
src/sys/arch/riscv64/riscv64/trap.c log diff annotate
message Add missing interrupt and traps accounting.
ok jca@ mpi@ kevlo@ jmatthew@

date 2025-03-01T12:30:19Z
author mglocker
files src/sys/dev/usb/uvideo.c log diff annotate
message Copy frames directly in to the mmap'ed buffer. This saves us one bcopy()
down the frame queuing path.

Original idea and diff from kirill@, with some modifications.

ok kirill@

date 2025-03-01T14:43:03Z
author kirill
files src/sys/dev/usb/usb_subr.c log diff annotate
src/sys/dev/usb/usbdivar.h log diff annotate
src/sys/dev/usb/xhci.c log diff annotate
message sys/xhci: support of USB 3.0 speeds

OK: mglocker@

date 2025-03-01T14:44:09Z
author kirill
files src/sys/dev/usb/uvideo.c log diff annotate
message sys/uvideo: support of USB 3.0 speeds

OK: mglocker@

date 2025-03-01T19:44:07Z
author deraadt
files src/sys/arch/macppc/stand/tbxidata/bsd.tbxi log diff annotate
src/sys/conf/newvers.sh log diff annotate
src/sys/sys/param.h log diff annotate
message move to 7.7-beta

date 2025-03-01T21:03:19Z
author bluhm
files src/sys/netinet/tcp_input.c log diff annotate
message Fix TCP checksum for IPv6 packets with extension headers.

When tcp_input() called in6_cksum() to verify the TCP checksum, the
IPv6 header length instead of the TCP header offset was used. Hence
TCP packets with IPv6 extension headers were never accepted.

from Giovanni Pimpinella; OK sashan@