Home
last modified time | relevance | path

Searched refs:efd_table (Results 1 – 4 of 4) sorted by relevance

/dpdk/app/test/
H A Dtest_efd_perf.c65 struct rte_efd_table *efd_table; member
170 params->efd_table = rte_efd_create("test_efd_perf", in setup_keys_and_data()
173 TEST_ASSERT_NOT_NULL(params->efd_table, "Error creating the efd table\n"); in setup_keys_and_data()
186 ret = rte_efd_update(params->efd_table, test_socket_id, keys[i], in timed_adds()
214 ret_data = rte_efd_lookup(params->efd_table, in timed_lookups()
252 rte_efd_lookup_bulk(params->efd_table, test_socket_id, in timed_lookups_multi()
291 ret = rte_efd_delete(params->efd_table, test_socket_id, keys[i], in timed_deletes()
315 if (params->efd_table != NULL) { in perform_frees()
316 rte_efd_free(params->efd_table); in perform_frees()
317 params->efd_table = NULL; in perform_frees()
/dpdk/examples/server_node_efd/server/
H A Dinit.c58 struct rte_efd_table *efd_table; variable
210 efd_table = rte_efd_create("flow table", num_flows * 2, sizeof(uint32_t), in create_efd_table()
213 if (efd_table == NULL) in create_efd_table()
231 ret = rte_efd_update(efd_table, socket_id, in populate_efd_table()
H A Dinit.h31 extern struct rte_efd_table *efd_table;
H A Dmain.c277 rte_efd_lookup_bulk(efd_table, socket_id, rx_count, in process_packets()