aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bxe/bxe.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/bxe/bxe.h')
-rw-r--r--sys/dev/bxe/bxe.h25
1 files changed, 2 insertions, 23 deletions
diff --git a/sys/dev/bxe/bxe.h b/sys/dev/bxe/bxe.h
index bf06c92196d1..4df1c0826a42 100644
--- a/sys/dev/bxe/bxe.h
+++ b/sys/dev/bxe/bxe.h
@@ -1492,29 +1492,8 @@ struct bxe_softc {
#define BXE_STATS_UNLOCK(sc) mtx_unlock(&sc->stats_mtx)
#define BXE_STATS_LOCK_ASSERT(sc) mtx_assert(&sc->stats_mtx, MA_OWNED)
-#if __FreeBSD_version < 800000
-#define BXE_MCAST_LOCK(sc) \
- do { \
- mtx_lock(&sc->mcast_mtx); \
- IF_ADDR_LOCK(sc->ifp); \
- } while (0)
-#define BXE_MCAST_UNLOCK(sc) \
- do { \
- IF_ADDR_UNLOCK(sc->ifp); \
- mtx_unlock(&sc->mcast_mtx); \
- } while (0)
-#else
-#define BXE_MCAST_LOCK(sc) \
- do { \
- mtx_lock(&sc->mcast_mtx); \
- if_maddr_rlock(sc->ifp); \
- } while (0)
-#define BXE_MCAST_UNLOCK(sc) \
- do { \
- if_maddr_runlock(sc->ifp); \
- mtx_unlock(&sc->mcast_mtx); \
- } while (0)
-#endif
+#define BXE_MCAST_LOCK(sc) mtx_lock(&sc->mcast_mtx);
+#define BXE_MCAST_UNLOCK(sc) mtx_unlock(&sc->mcast_mtx);
#define BXE_MCAST_LOCK_ASSERT(sc) mtx_assert(&sc->mcast_mtx, MA_OWNED)
int dmae_ready;