Module Name: src Committed By: martin Date: Thu Nov 28 16:37:05 UTC 2024
Modified Files: src/doc [netbsd-10]: CHANGES-10.1 Log Message: Ticket #1018 To generate a diff of this commit: cvs rdiff -u -r1.1.2.72 -r1.1.2.73 src/doc/CHANGES-10.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/doc/CHANGES-10.1 diff -u src/doc/CHANGES-10.1:1.1.2.72 src/doc/CHANGES-10.1:1.1.2.73 --- src/doc/CHANGES-10.1:1.1.2.72 Tue Nov 26 09:46:06 2024 +++ src/doc/CHANGES-10.1 Thu Nov 28 16:37:05 2024 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-10.1,v 1.1.2.72 2024/11/26 09:46:06 martin Exp $ +# $NetBSD: CHANGES-10.1,v 1.1.2.73 2024/11/28 16:37:05 martin Exp $ A complete list of changes from the NetBSD 10.0 release on 2024-03-28 until the 10.1 release: @@ -3725,3 +3725,13 @@ tests/lib/libarchive/Makefile 1.16 libarchive: PR 58829: hide private symbols. [riastradh, ticket #1017] +sys/dev/pci/virtio_pci.c 1.55 + + virtio(4): PR 68680: fix big-endian 64-bit register access. + The access is supposed to be always little-endian, irrespective + of the host or guest's byte order. This was previously implemented + correctly, but through a series of changes via the confusing name + bus_space_write_8 it was changed to be guest-endian instead of + little-endian. + [riastradh, ticket #1018] +