Home
last modified time | relevance | path

Searched refs:hash_val (Results 1 – 18 of 18) sorted by relevance

/f-stack/freebsd/net/
H A Drss_config.h132 u_int rss_hash2cpuid(uint32_t hash_val, uint32_t hash_type);
133 int rss_hash2bucket(uint32_t hash_val, uint32_t hash_type,
H A Drss_config.c357 rss_hash2cpuid(uint32_t hash_val, uint32_t hash_type) in rss_hash2cpuid() argument
367 return (rss_getcpu(rss_getbucket(hash_val))); in rss_hash2cpuid()
378 rss_hash2bucket(uint32_t hash_val, uint32_t hash_type, uint32_t *bucket_id) in rss_hash2bucket() argument
388 *bucket_id = rss_getbucket(hash_val); in rss_hash2bucket()
/f-stack/dpdk/drivers/net/igc/
H A Digc_filter.c169 if (igc->ntuple_filters[i].hash_val) { in igc_tuple_filter_lookup()
171 if (ntuple->hash_val == in igc_tuple_filter_lookup()
172 igc->ntuple_filters[i].hash_val) in igc_tuple_filter_lookup()
186 if (ntuple->hash_val == igc->ntuple_filters[i].hash_val) in igc_tuple_filter_lookup()
H A Digc_ethdev.h171 uint64_t hash_val; member
/f-stack/freebsd/netinet/
H A Din_rss.c379 uint32_t hash_val, hash_type; in rss_soft_m2cpuid_v4() local
385 &hash_val, &hash_type); in rss_soft_m2cpuid_v4()
391 m->m_pkthdr.flowid = hash_val; in rss_soft_m2cpuid_v4()
H A Draw_ip.c492 uint32_t hash_type, hash_val; in rip_output() local
494 hash_val = fib4_calc_software_hash(ip->ip_src, in rip_output()
496 m->m_pkthdr.flowid = hash_val; in rip_output()
538 uint32_t hash_type, hash_val; in rip_output() local
540 hash_val = fib4_calc_software_hash(ip->ip_dst, in rip_output()
542 m->m_pkthdr.flowid = hash_val; in rip_output()
H A Dudp_usrreq.c1490 uint32_t hash_val, hash_type; in udp_output() local
1492 hash_val = fib4_calc_packet_hash(laddr, faddr, in udp_output()
1494 m->m_pkthdr.flowid = hash_val; in udp_output()
H A Din_pcb.c1394 uint32_t hash_val, hash_type; in in_pcbconnect_setup() local
1396 hash_val = fib4_calc_software_hash(laddr, faddr, 0, fport, in in_pcbconnect_setup()
1399 inp->inp_flowid = hash_val; in in_pcbconnect_setup()
/f-stack/freebsd/netinet6/
H A Din6_rss.c402 uint32_t hash_val, hash_type; in rss_soft_m2cpuid_v6() local
408 &hash_val, &hash_type); in rss_soft_m2cpuid_v6()
414 m->m_pkthdr.flowid = hash_val; in rss_soft_m2cpuid_v6()
H A Draw_ip6.c469 uint32_t hash_type, hash_val; in rip6_output() local
471 hash_val = fib6_calc_software_hash(&inp->in6p_laddr, in rip6_output()
474 inp->inp_flowid = hash_val; in rip6_output()
H A Din6_pcb.c429 uint32_t hash_type, hash_val; in in6_pcbconnect_mbuf() local
431 hash_val = fib6_calc_software_hash(&inp->in6p_laddr, in in6_pcbconnect_mbuf()
434 inp->inp_flowid = hash_val; in in6_pcbconnect_mbuf()
H A Dudp6_usrreq.c956 uint32_t hash_type, hash_val; in udp6_output() local
961 hash_val = fib6_calc_packet_hash(laddr, faddr, in udp6_output()
963 m->m_pkthdr.flowid = hash_val; in udp6_output()
/f-stack/dpdk/lib/librte_efd/
H A Drte_efd.c383 uint32_t hash_val[EFD_MAX_GROUP_NUM_RULES]; in efd_search_hash() local
408 hash_val[rule_id] = hash_val_a[rule_id] + (hash_idx * in efd_search_hash()
426 uint32_t bucket_idx = hash_val[rule_id] >> in efd_search_hash()
/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_lpm6.c455 uint64_t hash_val;
460 (void **) &hash_val);
462 *next_hop = (uint32_t) hash_val;
/f-stack/dpdk/lib/librte_lpm/
H A Drte_lpm6.c450 uint64_t hash_val; in rule_find_with_key() local
455 (void **) &hash_val); in rule_find_with_key()
457 *next_hop = (uint32_t) hash_val; in rule_find_with_key()
/f-stack/dpdk/app/test/
H A Dtest_hash.c164 uint32_t hash_val; in test_crc32_hash_alg_equiv() local
182 hash_val = rte_hash_crc(data64, data_len, init_val); in test_crc32_hash_alg_equiv()
186 if (hash_val != rte_hash_crc(data64, data_len, init_val)) { in test_crc32_hash_alg_equiv()
193 if (hash_val != rte_hash_crc(data64, data_len, init_val)) { in test_crc32_hash_alg_equiv()
200 if (hash_val != rte_hash_crc(data64, data_len, init_val)) { in test_crc32_hash_alg_equiv()
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dt4_msg.h95 __be32 hash_val; member
/f-stack/dpdk/drivers/net/cxgbe/
H A Dsge.c1645 ntohl(rss_hdr->hash_val); in process_responses()