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

Pyun YongHyeon yongari at FreeBSD.org
Tue Jul 13 19:42:55 UTC 2010


Author: yongari
Date: Tue Jul 13 19:42:55 2010
New Revision: 210014
URL: http://svn.freebsd.org/changeset/base/210014

Log:
  Fix error message for jumbo buffer allocation failure.

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

Modified: head/sys/dev/bge/if_bge.c
==============================================================================
--- head/sys/dev/bge/if_bge.c	Tue Jul 13 19:39:51 2010	(r210013)
+++ head/sys/dev/bge/if_bge.c	Tue Jul 13 19:42:55 2010	(r210014)
@@ -4270,7 +4270,7 @@ bge_init_locked(struct bge_softc *sc)
 	    (MCLBYTES - ETHER_ALIGN)) {
 		if (bge_init_rx_ring_jumbo(sc) != 0) {
 			device_printf(sc->bge_dev,
-			    "no memory for std Rx buffers.\n");
+			    "no memory for jumbo Rx buffers.\n");
 			bge_stop(sc);
 			return;
 		}


More information about the svn-src-head mailing list