- Re-committed r220603 which was accidentally backed out by an earlier

commit.
- Fixed a bug in an unused debug macro.

MFC after:	One week.
This commit is contained in:
David Christensen 2011-05-02 20:43:24 +00:00
parent 2524d0a675
commit e93ad740a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221342
2 changed files with 1 additions and 4 deletions

View file

@ -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)

View file

@ -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;