Symbol: rss_hash
sys/dev/aq/aq_dbg.c
124
uint32_t rss_hash;
sys/dev/aq/aq_dbg.c
126
rss_hash = DESCR_FIELD(descr[0], 63, 32);
sys/dev/aq/aq_dbg.c
146
ring_idx, pointer, rss_hash,
sys/dev/aq/aq_ring.c
394
ri->iri_flowid = le32toh(rx_desc->wb.rss_hash);
sys/dev/aq/aq_ring.h
51
uint32_t rss_hash;
sys/dev/axgbe/xgbe-dev.c
1404
packet->rss_hash = le32_to_cpu(rdesc->desc1);
sys/dev/axgbe/xgbe-txrx.c
779
ri->iri_flowid = packet->rss_hash;
sys/dev/axgbe/xgbe-txrx.c
782
__func__, packet->rss_hash, ri->iri_flowid,
sys/dev/axgbe/xgbe.h
424
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/bnxt_txrx.c
508
ri->iri_flowid = le32toh(rcp->rss_hash);
sys/dev/bnxt/bnxt_en/bnxt_txrx.c
591
ri->iri_flowid = le32toh(tpas->low.rss_hash);
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
5493
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
6038
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
6690
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
7127
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
7492
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
7816
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
8236
uint32_t rss_hash;
sys/dev/bnxt/bnxt_en/hsi_struct_def.h
8847
uint32_t rss_hash;
sys/dev/cxgb/cxgb_sge.c
2844
uint32_t rss_hash = be32toh(r->rss_hdr.rss_hash_val);
sys/dev/cxgb/cxgb_sge.c
2898
mh->mh_head->m_pkthdr.flowid = rss_hash;
sys/dev/cxgbe/t4_sge.c
7052
uint32_t rss_hash;
sys/dev/cxgbe/t4_sge.c
7056
rss_hash = m0->m_pkthdr.flowid;
sys/dev/cxgbe/t4_sge.c
7058
rss_hash = arc4random();
sys/dev/cxgbe/t4_sge.c
7060
cst->iqid = vi->rss[rss_hash & rss_mask];
sys/dev/cxgbe/t4_sge.c
7061
cst->eo_txq += rss_hash % vi->nofldtxq;
sys/dev/cxgbe/tom/t4_listen.c
1133
inp->inp_flowid = synqe->rss_hash;
sys/dev/cxgbe/tom/t4_listen.c
1506
synqe->rss_hash = be32toh(rss->hash_val);
sys/dev/cxgbe/tom/t4_tom.h
285
uint32_t rss_hash;
sys/dev/enetc/enetc_hw.h
408
uint32_t rss_hash;
sys/dev/enetc/if_enetc.c
1251
ri->iri_flowid = desc->r.rss_hash;
sys/dev/enic/cq_enet_desc.h
113
u32 rss_hash, u16 bytes_written, u8 packet_error, u8 vlan_stripped,
sys/dev/enic/cq_enet_desc.h
132
desc->rss_hash = cpu_to_le32(rss_hash);
sys/dev/enic/cq_enet_desc.h
166
u8 *csum_not_calc, u32 *rss_hash, u16 *bytes_written, u8 *packet_error,
sys/dev/enic/cq_enet_desc.h
198
*rss_hash = le32_to_cpu(desc->rss_hash);
sys/dev/enic/cq_enet_desc.h
37
__le32 rss_hash;
sys/dev/enic/enic_txrx.c
399
u32 rss_hash;
sys/dev/enic/enic_txrx.c
408
&csum_not_calc, &rss_hash, &bytes_written,
sys/dev/gve/gve_desc.h
110
__be32 rss_hash; /* Receive-side scaling hash (Toeplitz for gVNIC) */
sys/dev/gve/gve_rx.c
586
mbuf->m_pkthdr.flowid = be32toh(desc->rss_hash);
sys/dev/hyperv/netvsc/if_hn.c
1377
hn_rss_type_fromndis(uint32_t rss_hash)
sys/dev/hyperv/netvsc/if_hn.c
1381
if (rss_hash & NDIS_HASH_IPV4)
sys/dev/hyperv/netvsc/if_hn.c
1383
if (rss_hash & NDIS_HASH_TCP_IPV4)
sys/dev/hyperv/netvsc/if_hn.c
1385
if (rss_hash & NDIS_HASH_IPV6)
sys/dev/hyperv/netvsc/if_hn.c
1387
if (rss_hash & NDIS_HASH_IPV6_EX)
sys/dev/hyperv/netvsc/if_hn.c
1389
if (rss_hash & NDIS_HASH_TCP_IPV6)
sys/dev/hyperv/netvsc/if_hn.c
1391
if (rss_hash & NDIS_HASH_TCP_IPV6_EX)
sys/dev/hyperv/netvsc/if_hn.c
1393
if (rss_hash & NDIS_HASH_UDP_IPV4_X)
sys/dev/hyperv/netvsc/if_hn.c
1401
uint32_t rss_hash = 0;
sys/dev/hyperv/netvsc/if_hn.c
1407
rss_hash |= NDIS_HASH_IPV4;
sys/dev/hyperv/netvsc/if_hn.c
1409
rss_hash |= NDIS_HASH_TCP_IPV4;
sys/dev/hyperv/netvsc/if_hn.c
1411
rss_hash |= NDIS_HASH_IPV6;
sys/dev/hyperv/netvsc/if_hn.c
1413
rss_hash |= NDIS_HASH_IPV6_EX;
sys/dev/hyperv/netvsc/if_hn.c
1415
rss_hash |= NDIS_HASH_TCP_IPV6;
sys/dev/hyperv/netvsc/if_hn.c
1417
rss_hash |= NDIS_HASH_TCP_IPV6_EX;
sys/dev/hyperv/netvsc/if_hn.c
1419
rss_hash |= NDIS_HASH_UDP_IPV4_X;
sys/dev/hyperv/netvsc/if_hn.c
1420
return (rss_hash);
sys/dev/ice/ice_flow.c
1855
u64 rss_hash = ICE_HASH_INVALID;
sys/dev/ice/ice_flow.c
1859
rss_hash = ICE_FLOW_HASH_IPV4;
sys/dev/ice/ice_flow.c
1863
rss_hash = ICE_FLOW_HASH_IPV4 |
sys/dev/ice/ice_flow.c
1868
rss_hash = ICE_FLOW_HASH_IPV4 |
sys/dev/ice/ice_flow.c
1873
rss_hash = ICE_FLOW_HASH_IPV4 |
sys/dev/ice/ice_flow.c
1880
rss_hash = ICE_FLOW_HASH_IPV6;
sys/dev/ice/ice_flow.c
1884
rss_hash = ICE_FLOW_HASH_IPV6 |
sys/dev/ice/ice_flow.c
1889
rss_hash = ICE_FLOW_HASH_IPV6 |
sys/dev/ice/ice_flow.c
1894
rss_hash = ICE_FLOW_HASH_IPV6 |
sys/dev/ice/ice_flow.c
1901
if (rss_hash == ICE_HASH_INVALID)
sys/dev/ice/ice_flow.c
1905
hcfg.hash_flds = rss_hash;
sys/dev/ice/ice_flow.c
1954
u64 rss_hash = ICE_HASH_INVALID;
sys/dev/ice/ice_flow.c
1966
rss_hash = r->hash.hash_flds;
sys/dev/ice/ice_flow.c
1971
return rss_hash;
sys/dev/ice/ice_iflib_txrx.c
455
ri->iri_flowid = le32toh(RX_FLEX_NIC(&cur->wb, rss_hash));
sys/dev/ice/ice_lan_tx_rx.h
464
__le32 rss_hash;
sys/dev/ice/ice_lan_tx_rx.h
598
__le32 rss_hash;
sys/dev/iwm/if_iwmreg.h
3367
uint32_t rss_hash;
sys/dev/iwx/if_iwxreg.h
3642
uint32_t rss_hash;
sys/dev/iwx/if_iwxreg.h
3677
uint32_t rss_hash;
sys/dev/qlnx/qlnxe/eth_common.h
260
__le32 rss_hash /* RSS hash result */;
sys/dev/qlnx/qlnxe/eth_common.h
321
__le32 rss_hash /* RSS hash result */;
sys/dev/qlnx/qlnxe/qlnx_os.c
3826
cqe->rss_hash, cqe->len_on_first_bd, cqe->placement_offset,
sys/dev/qlnx/qlnxe/qlnx_os.c
4054
mp->m_pkthdr.flowid = cqe->rss_hash;
sys/dev/qlnx/qlnxe/qlnx_os.c
4563
mp->m_pkthdr.flowid = fp_cqe->rss_hash;
sys/dev/qlxgb/qla_hw.h
540
uint32_t rss_hash;
sys/dev/qlxgb/qla_hw.h
655
uint32_t rss_hash;
sys/dev/qlxgbe/ql_hw.h
1494
uint32_t rss_hash;
sys/dev/qlxgbe/ql_hw.h
1509
uint32_t rss_hash;
sys/dev/qlxgbe/ql_isr.c
164
mpf->m_pkthdr.flowid = sgc->rss_hash;
sys/dev/qlxgbe/ql_isr.c
341
mpf->m_pkthdr.flowid = sgc->rss_hash;
sys/dev/qlxgbe/ql_isr.c
517
sgc.rcv.rss_hash =
sys/dev/qlxgbe/ql_isr.c
554
sgc.rcv.rss_hash =
sys/dev/qlxgbe/ql_isr.c
613
sgc.lro.rss_hash =
sys/dev/vmware/vmxnet3/if_vmx.c
1534
ri->iri_flowid = rxcd->rss_hash;
sys/dev/vmware/vmxnet3/if_vmxreg.h
151
uint32_t rss_hash:32; /* RSS hash value */
sys/net/rss_config.h
136
uint32_t rss_hash(u_int datalen, const uint8_t *data);
sys/netinet/in_rss.c
72
return (rss_hash(datalen, data));
sys/netinet/in_rss.c
95
return (rss_hash(datalen, data));
sys/netinet/ip_reass.c
211
uint32_t rss_hash, rss_type;
sys/netinet/ip_reass.c
550
if (rss_mbuf_software_hash_v4(m, 0, &rss_hash, &rss_type) == 0) {
sys/netinet/ip_reass.c
551
m->m_pkthdr.flowid = rss_hash;
sys/netinet6/in6_rss.c
73
return (rss_hash(datalen, data));
sys/netinet6/in6_rss.c
96
return (rss_hash(datalen, data));