Module Name: src
Committed By: martin
Date: Wed Nov 27 11:22:13 UTC 2019
Modified Files:
src/doc [netbsd-9]: CHANGES-9.0
Log Message:
Tickets #487, #488, and #490
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.121 -r1.1.2.122 src/doc/CHANGES-9.0
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-9.0
diff -u src/doc/CHANGES-9.0:1.1.2.121 src/doc/CHANGES-9.0:1.1.2.122
--- src/doc/CHANGES-9.0:1.1.2.121 Tue Nov 26 18:31:55 2019
+++ src/doc/CHANGES-9.0 Wed Nov 27 11:22:13 2019
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-9.0,v 1.1.2.121 2019/11/26 18:31:55 martin Exp $
+# $NetBSD: CHANGES-9.0,v 1.1.2.122 2019/11/27 11:22:13 martin Exp $
A complete list of changes from the initial NetBSD 9.0 branch on 2019-07-30
until the 9.0 release:
@@ -6467,3 +6467,27 @@ sys/dev/pci/if_mcx.c 1.7
mcx(4): fix IFF_ALLMULTI handling.
[jmcneill, ticket #486]
+sys/dev/pci/if_bge.c 1.336,1.340-1.342
+
+ - Avoid undefined behavior in bge_setmulti().
+ - Avoid undefined behavior when setting the MAC address in
+ bge_init().
+ - Fix a bug that SK-9D41 can't detect fiber media.
+ - Use *_FLUSH() more. The main purpose is to wait following
+ delay() correctly.
+ - Add missing DELAY(80) after writing BGE_MI_MODE register.
+ - Modify PHY initialization code to fix a bug that SK-9D21
+ doesn't detect MII PHY.
+ [msaitoh, ticket #487]
+
+sys/arch/amd64/amd64/netbsd32_machdep.c 1.126
+
+ Don't depend on #ifdef USER_LDT in cpu_mcontext32_validate(), but
+ rather on whether the proc uses a user-set LDT.
+ [maxv, ticket #488]
+
+sys/dev/mii/ipgphy.c 1.7
+
+ Print dmesg correctly.
+ [msaitoh, ticket #490]
+