diff options
author | sephe <sephe@FreeBSD.org> | 2016-06-07 04:51:50 +0000 |
---|---|---|
committer | sephe <sephe@FreeBSD.org> | 2016-06-07 04:51:50 +0000 |
commit | 7acd138965d96ffd22d5af9e51a5cc261951eb6a (patch) | |
tree | 8816b0f75c831a8e5070bc0b18af1929b457914e /sys/dev/ixl | |
parent | be6cf145bec7e3658cd25477592f21b906de159e (diff) | |
download | FreeBSD-src-7acd138965d96ffd22d5af9e51a5cc261951eb6a.zip FreeBSD-src-7acd138965d96ffd22d5af9e51a5cc261951eb6a.tar.gz |
net: Use M_HASHTYPE_OPAQUE_HASH if the mbuf flowid has hash properties
Reviewed by: hps, erj, tuexen
Sponsored by: Microsoft OSTC
Differential Revision: https://reviews.freebsd.org/D6688
Diffstat (limited to 'sys/dev/ixl')
-rw-r--r-- | sys/dev/ixl/ixl_txrx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ixl/ixl_txrx.c b/sys/dev/ixl/ixl_txrx.c index fc57f4e..d3aa7bf 100644 --- a/sys/dev/ixl/ixl_txrx.c +++ b/sys/dev/ixl/ixl_txrx.c @@ -1453,10 +1453,10 @@ ixl_ptype_to_hash(u8 ptype) ex = decoded.outer_frag; if (!decoded.known) - return M_HASHTYPE_OPAQUE; + return M_HASHTYPE_OPAQUE_HASH; if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_L2) - return M_HASHTYPE_OPAQUE; + return M_HASHTYPE_OPAQUE_HASH; /* Note: anything that gets to this point is IP */ if (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6) { @@ -1492,7 +1492,7 @@ ixl_ptype_to_hash(u8 ptype) } } /* We should never get here!! */ - return M_HASHTYPE_OPAQUE; + return M_HASHTYPE_OPAQUE_HASH; } #endif /* RSS */ |