Searched refs:hf (Results 1 – 4 of 4) sorted by relevance
| /dpdk/drivers/net/fm10k/ |
| H A D | fm10k_ethdev.c | 503 uint64_t hf; in fm10k_dev_rss_configure() local 549 hf = dev_conf->rx_adv_conf.rss_conf.rss_hf; in fm10k_dev_rss_configure() 551 mrqc |= (hf & RTE_ETH_RSS_IPV4) ? FM10K_MRQC_IPV4 : 0; in fm10k_dev_rss_configure() 552 mrqc |= (hf & RTE_ETH_RSS_IPV6) ? FM10K_MRQC_IPV6 : 0; in fm10k_dev_rss_configure() 553 mrqc |= (hf & RTE_ETH_RSS_IPV6_EX) ? FM10K_MRQC_IPV6 : 0; in fm10k_dev_rss_configure() 563 "supported", hf); in fm10k_dev_rss_configure() 2188 uint64_t hf = rss_conf->rss_hf; in fm10k_rss_hash_update() local 2197 if (hf == 0) in fm10k_rss_hash_update() 2231 uint64_t hf; in fm10k_rss_hash_conf_get() local 2245 hf = 0; in fm10k_rss_hash_conf_get() [all …]
|
| /dpdk/lib/eal/linux/ |
| H A D | eal_memory.c | 322 hf->file_id = i; in map_all_hugepages() 323 hf->size = hugepage_sz; in map_all_hugepages() 324 eal_get_hugefile_path(hf->filepath, sizeof(hf->filepath), in map_all_hugepages() 325 hpi->hugedir, hf->file_id); in map_all_hugepages() 326 hf->filepath[sizeof(hf->filepath) - 1] = '\0'; in map_all_hugepages() 350 hf->orig_va = virtaddr; in map_all_hugepages() 1538 size_t map_sz = hf->size; 1539 void *map_addr = hf->final_va; 1548 fd = open(hf->filepath, O_RDWR); 1551 hf->filepath, strerror(errno)); [all …]
|
| /dpdk/drivers/net/qede/ |
| H A D | qede_ethdev.c | 2089 static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf) in qede_init_rss_caps() argument 2092 *rss_caps |= (hf & RTE_ETH_RSS_IPV4) ? ECORE_RSS_IPV4 : 0; in qede_init_rss_caps() 2093 *rss_caps |= (hf & RTE_ETH_RSS_IPV6) ? ECORE_RSS_IPV6 : 0; in qede_init_rss_caps() 2094 *rss_caps |= (hf & RTE_ETH_RSS_IPV6_EX) ? ECORE_RSS_IPV6 : 0; in qede_init_rss_caps() 2095 *rss_caps |= (hf & RTE_ETH_RSS_NONFRAG_IPV4_TCP) ? ECORE_RSS_IPV4_TCP : 0; in qede_init_rss_caps() 2096 *rss_caps |= (hf & RTE_ETH_RSS_NONFRAG_IPV6_TCP) ? ECORE_RSS_IPV6_TCP : 0; in qede_init_rss_caps() 2111 uint64_t hf = rss_conf->rss_hf; in qede_rss_hash_update() local 2120 (unsigned long)hf, len, key); in qede_rss_hash_update() 2122 if (hf != 0) { in qede_rss_hash_update() 2127 qede_init_rss_caps(&rss_params.rss_caps, hf); in qede_rss_hash_update() [all …]
|
| /dpdk/lib/pipeline/ |
| H A D | rte_swx_pipeline.c | 7252 struct field *hf, *mf; in table_match_fields_check() local 7281 if ((!hf && !mf) || (hf && hf->var_size)) { in table_match_fields_check() 7286 offset[0] = h0 ? hf->offset : mf->offset; in table_match_fields_check() 7293 if (!hf || (h->id != h0->id) || hf->var_size) { in table_match_fields_check() 7298 offset[i] = hf->offset; in table_match_fields_check() 7741 struct field *hf, *mf; in selector_fields_check() local 7753 if (!hf && !mf) in selector_fields_check() 7761 if (!hf || (h->id != h0->id)) in selector_fields_check() 8092 struct field *hf, *mf; in learner_match_fields_check() local 8104 if (!hf && !mf) in learner_match_fields_check() [all …]
|