From fd3e9bafbd03af762f359ee17f893ecff181c4d5 Mon Sep 17 00:00:00 2001 From: Hiren Panchasara Date: Wed, 15 Jul 2015 01:01:17 +0000 Subject: [PATCH] Remove FreeBSD version check for deprecated M_FLOWID. Reviewed by: erj Sponsored by: Limelight Networks --- sys/dev/ixgbe/ix_txrx.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/dev/ixgbe/ix_txrx.c b/sys/dev/ixgbe/ix_txrx.c index 5a6cb29c3d3..96012b5b2cd 100644 --- a/sys/dev/ixgbe/ix_txrx.c +++ b/sys/dev/ixgbe/ix_txrx.c @@ -210,11 +210,7 @@ ixgbe_mq_start(struct ifnet *ifp, struct mbuf *m) * If everything is setup correctly, it should be the * same bucket that the current CPU we're on is. */ -#if __FreeBSD_version < 1100054 - if (m->m_flags & M_FLOWID) { -#else if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) { -#endif #ifdef RSS if (rss_hash2bucket(m->m_pkthdr.flowid, M_HASHTYPE_GET(m), &bucket_id) == 0)