diff options
author | 2006-06-27 16:40:11 +0000 | |
---|---|---|
committer | 2006-06-27 16:40:11 +0000 | |
commit | f1e58a2961bb0c39c0dec235453e2e79e4fa95e6 (patch) | |
tree | 12abbff1c8fdc3c9c6431cce0d841f57d907bfd6 | |
parent | 97 merger; from king of nynex (diff) | |
download | wireguard-openbsd-f1e58a2961bb0c39c0dec235453e2e79e4fa95e6.tar.xz wireguard-openbsd-f1e58a2961bb0c39c0dec235453e2e79e4fa95e6.zip |
Disable Jumbos on the 5714 family of chips for now. The bge driver assumes
that all chips which have Jumbo capability have a separate Jumbo receive ring.
It seems as if the 5714 family has done away with the separate receive ring,
according to the Linux driver.
-rw-r--r-- | share/man/man4/bge.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_bge.c | 5 |
2 files changed, 4 insertions, 7 deletions
diff --git a/share/man/man4/bge.4 b/share/man/man4/bge.4 index db7fa472ab8..25b1c650506 100644 --- a/share/man/man4/bge.4 +++ b/share/man/man4/bge.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bge.4,v 1.29 2005/12/11 20:42:22 brad Exp $ +.\" $OpenBSD: bge.4,v 1.30 2006/06/27 16:40:11 brad Exp $ .\" Copyright (c) 2001 Wind River Systems .\" Copyright (c) 1997, 1998, 1999, 2000, 2001 .\" Bill Paul <wpaul@windriver.com>. All rights reserved. @@ -114,8 +114,8 @@ copper Gigabit transceivers, which support autonegotiation of 10, 100 and 1000Mbps modes in full or half duplex. .Pp -The BCM5700, BCM5701, BCM5703, BCM5704, BCM5714 and BCM5780 are capable of -supporting Jumbo frames, which can be configured via the interface MTU setting. +The BCM5700, BCM5701, BCM5703 and BCM5704 are capable of supporting Jumbo frames, +which can be configured via the interface MTU setting. Selecting an MTU larger than 1500 bytes with the .Xr ifconfig 8 utility configures the adapter to receive and transmit Jumbo frames. diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 3a5f01d1e27..53f109fb42e 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.162 2006/06/22 04:15:47 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.163 2006/06/27 16:40:11 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -289,9 +289,6 @@ const struct pci_matchid bge_devices[] = { (BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5700 || \ BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5701 || \ BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5703 || \ - BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5714_A0 || \ - BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5780 || \ - BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5714 || \ BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5704) |