There is a mistake with the comment beside the promiscuous mode flag in nxe(4).
Index: if_nxe.c =================================================================== RCS file: /home/cvs/src/sys/dev/pci/if_nxe.c,v retrieving revision 1.61 diff -u -p -r1.61 if_nxe.c --- if_nxe.c 19 May 2010 15:27:35 -0000 1.61 +++ if_nxe.c 1 Aug 2010 17:32:03 -0000 @@ -229,7 +229,7 @@ int nxedebug = 0; #define NXE_0_XG_CFG1_PAUSE_FR_DIS (1<<8) /* disable pause frame detect */ #define NXE_0_XG_CFG1_SEQ_ERR_EN (1<<10) /* enable seq err detection */ #define NXE_0_XG_CFG1_MULTICAST (1<<12) /* accept all multicast */ -#define NXE_0_XG_CFG1_PROMISC (1<<13) /* accept all multicast */ +#define NXE_0_XG_CFG1_PROMISC (1<<13) /* accept all frames */ #define NXE_0_XG_IPG(_p) (0x00670008 + _P(_p)) #define NXE_0_XG_MAC_LO(_p) (0x00670010 + _P(_p)) #define NXE_0_XG_MAC_HI(_p) (0x0067000c + _P(_p)) -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
