diff -r b2a82a2c39df sys/dev/cxgbe/t4_sge.c --- a/sys/dev/cxgbe/t4_sge.c Sun Jul 26 00:11:04 2015 +0000 +++ b/sys/dev/cxgbe/t4_sge.c Sun Jul 26 10:25:05 2015 -0700 @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include @@ -1738,6 +1739,20 @@ t4_eth_rx(struct sge_iq *iq, const struc M_HASHTYPE_SET(m0, sw_hashtype[rss->hash_type][rss->ipv6]); m0->m_pkthdr.flowid = be32toh(rss->hash_val); + if (rss->filter_tid) { + struct adapter *sc = iq->adapter; + + /* + * This packet hit a filter that is setup to report the tid + * instead of the RSS hash. + */ + + MPASS(rss->filter_hit); + m0->m_pkthdr.flowid -= sc->tids.ftid_base; + CTR2(KTR_CXGBE, "%s: filter hit, tid %u", __func__, + m0->m_pkthdr.flowid); + } + if (cpl->csum_calc && !cpl->err_vec) { if (ifp->if_capenable & IFCAP_RXCSUM && cpl->l2info & htobe32(F_RXF_IP)) {