Home
last modified time | relevance | path

Searched refs:dummy (Results 1 – 25 of 44) sorted by relevance

12

/dpdk/examples/l3fwd/
H A Dl3fwd.h221 em_main_loop(__rte_unused void *dummy);
224 lpm_main_loop(__rte_unused void *dummy);
227 fib_main_loop(__rte_unused void *dummy);
230 lpm_event_main_loop_tx_d(__rte_unused void *dummy);
234 lpm_event_main_loop_tx_q(__rte_unused void *dummy);
247 em_event_main_loop_tx_d(__rte_unused void *dummy);
249 em_event_main_loop_tx_d_burst(__rte_unused void *dummy);
251 em_event_main_loop_tx_q(__rte_unused void *dummy);
253 em_event_main_loop_tx_q_burst(__rte_unused void *dummy);
264 fib_event_main_loop_tx_d(__rte_unused void *dummy);
[all …]
H A Dl3fwd_fib.c170 fib_main_loop(__rte_unused void *dummy) in fib_main_loop() argument
379 fib_event_main_loop_tx_d(__rte_unused void *dummy) in fib_event_main_loop_tx_d() argument
389 fib_event_main_loop_tx_d_burst(__rte_unused void *dummy) in fib_event_main_loop_tx_d_burst() argument
399 fib_event_main_loop_tx_q(__rte_unused void *dummy) in fib_event_main_loop_tx_q() argument
409 fib_event_main_loop_tx_q_burst(__rte_unused void *dummy) in fib_event_main_loop_tx_q_burst() argument
550 fib_event_main_loop_tx_d_vector(__rte_unused void *dummy) in fib_event_main_loop_tx_d_vector() argument
559 fib_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy) in fib_event_main_loop_tx_d_burst_vector() argument
568 fib_event_main_loop_tx_q_vector(__rte_unused void *dummy) in fib_event_main_loop_tx_q_vector() argument
577 fib_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy) in fib_event_main_loop_tx_q_burst_vector() argument
H A Dl3fwd_lpm.c145 lpm_main_loop(__rte_unused void *dummy) in lpm_main_loop() argument
388 lpm_event_main_loop_tx_d(__rte_unused void *dummy) in lpm_event_main_loop_tx_d() argument
398 lpm_event_main_loop_tx_d_burst(__rte_unused void *dummy) in lpm_event_main_loop_tx_d_burst() argument
408 lpm_event_main_loop_tx_q(__rte_unused void *dummy) in lpm_event_main_loop_tx_q() argument
418 lpm_event_main_loop_tx_q_burst(__rte_unused void *dummy) in lpm_event_main_loop_tx_q_burst() argument
516 lpm_event_main_loop_tx_d_vector(__rte_unused void *dummy) in lpm_event_main_loop_tx_d_vector() argument
525 lpm_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy) in lpm_event_main_loop_tx_d_burst_vector() argument
534 lpm_event_main_loop_tx_q_vector(__rte_unused void *dummy) in lpm_event_main_loop_tx_q_vector() argument
543 lpm_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy) in lpm_event_main_loop_tx_q_burst_vector() argument
H A Dl3fwd_em.c565 em_main_loop(__rte_unused void *dummy) in em_main_loop() argument
794 em_event_main_loop_tx_d(__rte_unused void *dummy) in em_event_main_loop_tx_d() argument
804 em_event_main_loop_tx_d_burst(__rte_unused void *dummy) in em_event_main_loop_tx_d_burst() argument
814 em_event_main_loop_tx_q(__rte_unused void *dummy) in em_event_main_loop_tx_q() argument
824 em_event_main_loop_tx_q_burst(__rte_unused void *dummy) in em_event_main_loop_tx_q_burst() argument
905 em_event_main_loop_tx_d_vector(__rte_unused void *dummy) in em_event_main_loop_tx_d_vector() argument
914 em_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy) in em_event_main_loop_tx_d_burst_vector() argument
923 em_event_main_loop_tx_q_vector(__rte_unused void *dummy) in em_event_main_loop_tx_q_vector() argument
932 em_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy) in em_event_main_loop_tx_q_burst_vector() argument
/dpdk/app/test/
H A Dtest_fbarray.c108 struct rte_fbarray dummy; in test_invalid() local
199 TEST_ASSERT(rte_fbarray_find_idx(&dummy, NULL) < 0, in test_invalid()
245 TEST_ASSERT(rte_fbarray_find_next_n_free(&dummy, in test_invalid()
249 TEST_ASSERT(rte_fbarray_find_next_n_free(&dummy, 0, in test_invalid()
257 TEST_ASSERT(rte_fbarray_find_next_n_used(&dummy, in test_invalid()
261 TEST_ASSERT(rte_fbarray_find_next_n_used(&dummy, 0, in test_invalid()
269 TEST_ASSERT(rte_fbarray_find_prev_n_free(&dummy, in test_invalid()
273 TEST_ASSERT(rte_fbarray_find_prev_n_free(&dummy, 0, in test_invalid()
281 TEST_ASSERT(rte_fbarray_find_prev_n_used(&dummy, in test_invalid()
285 TEST_ASSERT(rte_fbarray_find_prev_n_used(&dummy, 0, in test_invalid()
[all …]
H A Dtest_malloc.c281 void *dummy = rte_malloc_socket(NULL, RTE_CACHE_LINE_SIZE, 0, socket); in test_multi_alloc_statistics() local
282 if (dummy == NULL) in test_multi_alloc_statistics()
291 rte_free(dummy); in test_multi_alloc_statistics()
/dpdk/lib/eal/common/
H A Deal_common_proc.c374 struct rte_mp_msg dummy; in process_msg() local
376 memset(&dummy, 0, sizeof(dummy)); in process_msg()
377 strlcpy(dummy.name, msg->name, sizeof(dummy.name)); in process_msg()
1083 struct pending_request *dummy; in rte_mp_request_async() local
1112 dummy = calloc(1, sizeof(*dummy)); in rte_mp_request_async()
1145 dummy->type = REQUEST_TYPE_ASYNC; in rte_mp_request_async()
1146 dummy->request = copy; in rte_mp_request_async()
1147 dummy->reply = NULL; in rte_mp_request_async()
1148 dummy->async.param = param; in rte_mp_request_async()
1216 free(dummy); in rte_mp_request_async()
[all …]
H A Deal_common_dynmem.c241 struct hugepage_info dummy; in eal_dynmem_hugepage_init() local
253 memset(&dummy, 0, sizeof(dummy)); in eal_dynmem_hugepage_init()
254 dummy.hugepage_sz = hpi->hugepage_sz; in eal_dynmem_hugepage_init()
255 if (rte_memseg_list_walk(hugepage_count_walk, &dummy) < 0) in eal_dynmem_hugepage_init()
258 for (i = 0; i < RTE_DIM(dummy.num_pages); i++) { in eal_dynmem_hugepage_init()
260 dummy.num_pages[i]); in eal_dynmem_hugepage_init()
/dpdk/lib/eventdev/
H A Deventdev_private.c88 static const struct rte_event_fp_ops dummy = { in event_dev_fp_ops_reset() local
103 *fp_op = dummy; in event_dev_fp_ops_reset()
/dpdk/drivers/net/sfc/
H A Dsfc_flow_rss.c289 if (ctx->dummy) in sfc_flow_rss_ctx_del()
412 (ctx->dummy) ? ethdev_rss->hash_types : in sfc_flow_rss_ctx_program()
418 (ctx->dummy) ? ethdev_rss->hash_types : in sfc_flow_rss_ctx_program()
425 (ctx->dummy) ? ethdev_rss->key : conf->key, in sfc_flow_rss_ctx_program()
H A Dsfc_flow_rss.h33 bool dummy; member
/dpdk/lib/cryptodev/
H A Dcryptodev_pmd.c207 static const struct rte_crypto_fp_ops dummy = { in cryptodev_fp_ops_reset() local
217 *fp_ops = dummy; in cryptodev_fp_ops_reset()
/dpdk/drivers/net/ice/
H A Dice_dcf_ethdev.h25 uint64_t dummy; member
/dpdk/lib/security/
H A Drte_security.h362 int dummy; member
832 int dummy; member
/dpdk/lib/net/
H A Drte_ecpri.h184 rte_be32_t dummy[3]; member
/dpdk/doc/guides/nics/
H A Dnull.rst25 It copies data of the packet before Rx/Tx. For Rx it uses another empty dummy mbuf for this.
/dpdk/lib/power/
H A Drte_power_pmd_mgmt.c439 struct rte_power_monitor_cond dummy; in check_monitor() local
459 &dummy) == -ENOTSUP) { in check_monitor()
/dpdk/examples/multi_process/client_server_mp/mp_server/
H A Dmain.c157 sleep_lcore(__rte_unused void *dummy) in sleep_lcore() argument
/dpdk/examples/qos_sched/
H A Dmain.c32 app_main_loop(__rte_unused void *dummy) in app_main_loop() argument
/dpdk/examples/server_node_efd/server/
H A Dmain.c177 sleep_lcore(__rte_unused void *dummy) in sleep_lcore() argument
/dpdk/doc/guides/sample_app_ug/
H A Dservice_cores.rst12 This sample application registers 5 dummy services. These 5 services are used
/dpdk/examples/qos_meter/
H A Dmain.c169 main_loop(__rte_unused void *dummy) in main_loop() argument
/dpdk/examples/l3fwd-power/
H A Dmain.c923 static int main_intr_loop(__rte_unused void *dummy) in main_intr_loop() argument
1089 main_telemetry_loop(__rte_unused void *dummy) in main_telemetry_loop() argument
1209 main_empty_poll_loop(__rte_unused void *dummy) in main_empty_poll_loop() argument
1313 main_legacy_loop(__rte_unused void *dummy) in main_legacy_loop() argument
/dpdk/drivers/net/ice/base/
H A Dice_flow.h544 u32 dummy; member
/dpdk/examples/vmdq/
H A Dmain.c489 lcore_main(__rte_unused void *dummy) in lcore_main() argument

12