Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 May 2011 20:43:24 +0000 (UTC)
From:      David Christensen <davidch@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r221342 - head/sys/dev/bxe
Message-ID:  <201105022043.p42KhOcj053651@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: davidch
Date: Mon May  2 20:43:24 2011
New Revision: 221342
URL: http://svn.freebsd.org/changeset/base/221342

Log:
  - Re-committed r220603 which was accidentally backed out by an earlier
    commit.
  - Fixed a bug in an unused debug macro.
  
  MFC after:	One week.

Modified:
  head/sys/dev/bxe/bxe_debug.h
  head/sys/dev/bxe/if_bxe.h

Modified: head/sys/dev/bxe/bxe_debug.h
==============================================================================
--- head/sys/dev/bxe/bxe_debug.h	Mon May  2 20:37:30 2011	(r221341)
+++ head/sys/dev/bxe/bxe_debug.h	Mon May  2 20:43:24 2011	(r221342)
@@ -210,7 +210,7 @@ extern uint32_t bxe_debug;
 /* Returns FALSE in "defects" per 2^31 - 1 calls, otherwise returns TRUE. */
 #define DB_RANDOMFALSE(defects)        (random() > defects)
 #define DB_OR_RANDOMFALSE(defects)  || (random() > defects)
-#define DB_AND_RANDOMFALSE(defects) && (random() > ddfects)
+#define DB_AND_RANDOMFALSE(defects) && (random() > defects)
 
 /* Returns TRUE in "defects" per 2^31 - 1 calls, otherwise returns FALSE. */
 #define DB_RANDOMTRUE(defects)         (random() < defects)

Modified: head/sys/dev/bxe/if_bxe.h
==============================================================================
--- head/sys/dev/bxe/if_bxe.h	Mon May  2 20:37:30 2011	(r221341)
+++ head/sys/dev/bxe/if_bxe.h	Mon May  2 20:43:24 2011	(r221342)
@@ -1150,9 +1150,6 @@ struct bxe_fastpath {
 
 /* ToDo: Audit this structure for unused varaibles. */
 struct bxe_softc {
-	/*
-	 * MUST start with ifnet pointer (see definition of miibus_statchg()).
-	 */
 	struct ifnet		*bxe_ifp;
 	int			media;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105022043.p42KhOcj053651>