Module Name: src
Committed By: msaitoh
Date: Mon Sep 9 04:13:30 UTC 2013
Modified Files:
src/doc [netbsd-6]: CHANGES-6.2
Log Message:
Modify ticket 939:
- Add note about PR#47710
- 80 columns.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.33 -r1.1.2.34 src/doc/CHANGES-6.2
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-6.2
diff -u src/doc/CHANGES-6.2:1.1.2.33 src/doc/CHANGES-6.2:1.1.2.34
--- src/doc/CHANGES-6.2:1.1.2.33 Sat Sep 7 16:44:13 2013
+++ src/doc/CHANGES-6.2 Mon Sep 9 04:13:30 2013
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.2,v 1.1.2.33 2013/09/07 16:44:13 bouyer Exp $
+# $NetBSD: CHANGES-6.2,v 1.1.2.34 2013/09/09 04:13:30 msaitoh Exp $
A complete list of changes from the 6.1 release until the 6.2 release:
@@ -574,11 +574,12 @@ share/man/man4/bge.4 1.13-1.15 via patc
Add some device support, fix a lot of bugs and add some enahcements.
- Add Altima AC1003, APPLE BCM5701, Broadcom BCM5785F,
- BCM5785G, BCM5787F, BCM5719, BCM5720, BCM57766, BCM57782 and BCM57786.
+ BCM5785G, BCM5787F, BCM5719, BCM5720, BCM57766, BCM57782 and
+ BCM57786. PR#47710.
- brgphy(4): Add BCM5756, BCM5717C, BCM5719C, BCM5720C and BCM57780.
- Add some bugfixes and enhancement from FreeBSD:
- - Workaround for BCM5906 silicon bug. When auto-negotiation results in
- half-duplex operation, excess collision on the ethernet link may
+ - Workaround for BCM5906 silicon bug. When auto-negotiation results
+ in half-duplex operation, excess collision on the ethernet link may
cause internal chip delays that may result in subsequent valid
frames being dropped due to insufficient receive buffer resources.
(FreeBSD: r214219, r214251, r214292)
@@ -614,9 +615,9 @@ share/man/man4/bge.4 1.13-1.15 via patc
flag to not to check Gigabit flags. It's the same as FreeBSD.
- In brgphyattach(), set sc_isbge, sc_isbnx and sc_phyflags before
PHY_RESET() because brgphy_reset() refers those flags.
- - Call brgpy specific autonego function in MII_TICK. Before this commit,
- only MII_MEDIACHG calls brgphy_mii_phy_auto() and MII_TICK calls MI
- mii_phy_auto(). That was not intended.
+ - Call brgpy specific autonego function in MII_TICK. Before this
+ commit, only MII_MEDIACHG calls brgphy_mii_phy_auto() and MII_TICK
+ calls MI mii_phy_auto(). That was not intended.
- Sync with FreeBSD and OpenBSD. Almost the same as OpenBSD rev. 1.325:
- Sync the ring setup code closer to FreeBSD's driver
- Do not touch the jumbo replenish threshold register on chips that
@@ -645,9 +646,9 @@ share/man/man4/bge.4 1.13-1.15 via patc
bge_readmem_ind().
- For BGE_IS_575X_PLUS() devices, don't set
BGE_RXLPSTATCONTROL_DACK_FIX bits because these bits are reserved.
- - bge_init_tx_ring() uses BGE_RSLOTS (==256) but bge_free_tx_ring() uses
- BGE_TX_RING_CNT (== 512). Delete BGE_RSLOTS and use BGE_TX_RING_CNT.
- Same as OpenBSD's if_bge.c rev. 1.86.
+ - bge_init_tx_ring() uses BGE_RSLOTS (==256) but bge_free_tx_ring()
+ uses BGE_TX_RING_CNT (== 512). Delete BGE_RSLOTS and use
+ BGE_TX_RING_CNT. Same as OpenBSD's if_bge.c rev. 1.86.
- Document says 5717 and newer chips have no
BGE_PCISTATE_INTR_NOT_ACTIVE bit, so don't use the bit on those
chips. Same as OpenBSD.