Thu Jul 16 12:41:35 2020 UTC ()
Tickets #1016 and #1017


(martin)
diff -r1.1.2.79 -r1.1.2.80 src/doc/CHANGES-9.1

cvs diff -r1.1.2.79 -r1.1.2.80 src/doc/Attic/CHANGES-9.1 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-9.1 2020/07/15 17:27:25 1.1.2.79
+++ src/doc/Attic/CHANGES-9.1 2020/07/16 12:41:35 1.1.2.80
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-9.1,v 1.1.2.79 2020/07/15 17:27:25 martin Exp $ 1# $NetBSD: CHANGES-9.1,v 1.1.2.80 2020/07/16 12:41:35 martin Exp $
2 2
3A complete list of changes from the NetBSD 9.0 release to the NetBSD 9.1 3A complete list of changes from the NetBSD 9.0 release to the NetBSD 9.1
4release: 4release:
5 5
6external/gpl2/groff/tmac/mdoc.local patched by hand 6external/gpl2/groff/tmac/mdoc.local patched by hand
7sys/sys/param.h patched by hand 7sys/sys/param.h patched by hand
8 8
9 Welcome to 9.0_STABLE. 9 Welcome to 9.0_STABLE.
10 [martin] 10 [martin]
11 11
12external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c 1.57 12external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c 1.57
13 13
14 zfs_netbsd_setattr: ignore size changes on device nodes. 14 zfs_netbsd_setattr: ignore size changes on device nodes.
@@ -3435,13 +3435,36 @@ sys/dev/pci/if_tireg.h 1.26 @@ -3435,13 +3435,36 @@ sys/dev/pci/if_tireg.h 1.26
3435 3435
3436sys/arch/x86/conf/files.x86 1.108 (via patch) 3436sys/arch/x86/conf/files.x86 1.108 (via patch)
3437sys/arch/x86/include/apicvar.h 1.7 (via patch) 3437sys/arch/x86/include/apicvar.h 1.7 (via patch)
3438sys/arch/x86/include/cpu.h 1.121 (via patch) 3438sys/arch/x86/include/cpu.h 1.121 (via patch)
3439sys/arch/x86/x86/cpu.c 1.185 (via patch) 3439sys/arch/x86/x86/cpu.c 1.185 (via patch)
3440sys/arch/x86/x86/hyperv.c 1.7 (via patch) 3440sys/arch/x86/x86/hyperv.c 1.7 (via patch)
3441sys/arch/x86/x86/tsc.c 1.41 (via patch) 3441sys/arch/x86/x86/tsc.c 1.41 (via patch)
3442sys/arch/xen/conf/files.xen 1.181 (via patch) 3442sys/arch/xen/conf/files.xen 1.181 (via patch)
3443 3443
3444 Get TSC frequency from CPUID 0x15 and/or x16 if it's available. 3444 Get TSC frequency from CPUID 0x15 and/or x16 if it's available.
3445 This change fixes a problem that newer Intel processors' timer 3445 This change fixes a problem that newer Intel processors' timer
3446 counts very slowly. 3446 counts very slowly.
3447 [msaitoh, ticket #1015] 3447 [msaitoh, ticket #1015]
 3448
 3449sys/arch/mips/mips/mips_machdep.c 1.294
 3450
 3451 mips: fix pmap(1) and other kmem grovellers for 64bit kernels.
 3452 [simonb, ticket #1016]
 3453
 3454sys/dev/pci/piixpm.c 1.57-1.59, 1.61-1.63 via patch
 3455sys/dev/pci/piixpmreg.h 1.9-1.12
 3456
 3457 - Fix number of port for Hudson rev. 0x1f and newer.
 3458 - Read SB800_SMB_HOSTC correctly. This register is not in the PCI
 3459 config space but in the I/O space.
 3460 - The bit 0 of SB800_SMB_HOSTC is 0 on SMI or 1 on IRQ, so invert the
 3461 check.
 3462 - Don't force using SMBUS0SEL register.
 3463 - Acquire/release host semaphore to share SMBus between the host and
 3464 the embedded controller (IMC). Without this change, "shutdown -r"
 3465 does power off and not boot on some machines.
 3466 - Save/restore port number before selecting port.
 3467 - Modify comment.
 3468 - Whitespace fix.
 3469 [msaitoh, ticket #1017]
 3470