svn commit: r221974 - head/sys/dev/bge

Pyun YongHyeon yongari at FreeBSD.org
Sun May 15 21:44:52 UTC 2011


Author: yongari
Date: Sun May 15 21:44:51 2011
New Revision: 221974
URL: http://svn.freebsd.org/changeset/base/221974

Log:
  Correctly disable jumbo frame support for BCM5719 A0.

Modified:
  head/sys/dev/bge/if_bge.c

Modified: head/sys/dev/bge/if_bge.c
==============================================================================
--- head/sys/dev/bge/if_bge.c	Sun May 15 20:52:43 2011	(r221973)
+++ head/sys/dev/bge/if_bge.c	Sun May 15 21:44:51 2011	(r221974)
@@ -2836,7 +2836,7 @@ bge_attach(device_t dev)
 		if (sc->bge_asicrev == BGE_ASICREV_BCM5719 &&
 		    sc->bge_chipid == BGE_CHIPID_BCM5719_A0) {
 			/* Jumbo frame on BCM5719 A0 does not work. */
-			sc->bge_flags &= ~BGE_FLAG_JUMBO_FRAME;
+			sc->bge_flags &= ~BGE_FLAG_JUMBO;
 		}
 		break;
 	case BGE_ASICREV_BCM5755:


More information about the svn-src-all mailing list