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;
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to