1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2019 Intel Corporation
10 #include <rte_debug.h>
11 #include <rte_memzone.h>
12 #include <rte_atomic.h>
13 #include <rte_timer.h>
14 #include <rte_cycles.h>
15 #include <rte_mempool.h>
16 #include <rte_random.h>
21 #define NUM_TIMERS (1 << 20) /* ~1M timers */
22 #define NUM_LCORES_NEEDED 3
23 #define TEST_INFO_MZ_NAME "test_timer_info_mz"
24 #define MSECPERSEC 1E3
26 #define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__)
29 unsigned int mstr_lcore;
30 unsigned int mgr_lcore;
31 unsigned int sec_lcore;
32 uint32_t timer_data_id;
33 volatile int expected_count;
34 volatile int expired_count;
35 struct rte_mempool *tim_mempool;
36 struct rte_timer *expired_timers[NUM_TIMERS];
37 int expired_timers_idx;
38 volatile int exit_flag;
42 timer_secondary_spawn_wait(unsigned int lcore)
45 #ifdef RTE_EXEC_ENV_LINUXAPP
46 char tmp[PATH_MAX] = {0};
47 char prefix[PATH_MAX] = {0};
49 get_current_prefix(tmp, sizeof(tmp));
51 snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
53 const char *prefix = "";
55 char const *argv[] = {
58 "--proc-type=secondary",
62 snprintf(coremask, sizeof(coremask), "%x", (1 << lcore));
64 return launch_proc(argv);
68 handle_expired_timer(struct rte_timer *tim)
70 struct test_info *test_info = tim->arg;
72 test_info->expired_count++;
73 test_info->expired_timers[test_info->expired_timers_idx++] = tim;
77 timer_manage_loop(void *arg)
80 uint64_t tick_cycles = TICK_MSECS * rte_get_timer_hz() / MSECPERSEC;
81 uint64_t prev_tsc = 0, cur_tsc, diff_tsc;
82 struct test_info *test_info = arg;
84 while (!test_info->exit_flag) {
85 cur_tsc = rte_rdtsc();
86 diff_tsc = cur_tsc - prev_tsc;
88 if (diff_tsc > tick_cycles) {
89 /* Scan timer list for expired timers */
90 rte_timer_alt_manage(test_info->timer_data_id,
93 handle_expired_timer);
95 /* Return expired timer objects back to mempool */
96 rte_mempool_put_bulk(test_info->tim_mempool,
97 (void **)test_info->expired_timers,
98 test_info->expired_timers_idx);
100 test_info->expired_timers_idx = 0;
112 test_timer_secondary(void)
114 int proc_type = rte_eal_process_type();
115 const struct rte_memzone *mz;
116 struct test_info *test_info;
119 if (proc_type == RTE_PROC_PRIMARY) {
120 if (rte_lcore_count() < NUM_LCORES_NEEDED) {
121 printf("Not enough cores for test_timer_secondary, expecting at least %u\n",
126 mz = rte_memzone_reserve(TEST_INFO_MZ_NAME, sizeof(*test_info),
128 test_info = mz->addr;
129 TEST_ASSERT_NOT_NULL(test_info, "Couldn't allocate memory for "
132 test_info->tim_mempool = rte_mempool_create("test_timer_mp",
133 NUM_TIMERS, sizeof(struct rte_timer), 0, 0,
134 NULL, NULL, NULL, NULL, rte_socket_id(), 0);
136 ret = rte_timer_data_alloc(&test_info->timer_data_id);
137 TEST_ASSERT_SUCCESS(ret, "Failed to allocate timer data "
140 unsigned int *mstr_lcorep = &test_info->mstr_lcore;
141 unsigned int *mgr_lcorep = &test_info->mgr_lcore;
142 unsigned int *sec_lcorep = &test_info->sec_lcore;
144 *mstr_lcorep = rte_get_master_lcore();
145 *mgr_lcorep = rte_get_next_lcore(*mstr_lcorep, 1, 1);
146 *sec_lcorep = rte_get_next_lcore(*mgr_lcorep, 1, 1);
148 ret = rte_eal_remote_launch(timer_manage_loop,
151 TEST_ASSERT_SUCCESS(ret, "Failed to launch timer manage loop");
153 ret = timer_secondary_spawn_wait(*sec_lcorep);
154 TEST_ASSERT_SUCCESS(ret, "Secondary process execution failed");
158 test_info->exit_flag = 1;
159 rte_eal_wait_lcore(*mgr_lcorep);
161 #ifdef RTE_LIBRTE_TIMER_DEBUG
162 rte_timer_alt_dump_stats(test_info->timer_data_id, stdout);
165 return test_info->expected_count == test_info->expired_count ?
166 TEST_SUCCESS : TEST_FAILED;
168 } else if (proc_type == RTE_PROC_SECONDARY) {
169 uint64_t ticks, timeout_ms;
170 struct rte_timer *tim;
173 mz = rte_memzone_lookup(TEST_INFO_MZ_NAME);
174 test_info = mz->addr;
175 TEST_ASSERT_NOT_NULL(test_info, "Couldn't lookup memzone for "
178 for (i = 0; i < NUM_TIMERS; i++) {
179 rte_mempool_get(test_info->tim_mempool, (void **)&tim);
183 /* generate timeouts between 10 and 160 ms */
184 timeout_ms = ((rte_rand() & 0xF) + 1) * 10;
185 ticks = timeout_ms * rte_get_timer_hz() / MSECPERSEC;
187 ret = rte_timer_alt_reset(test_info->timer_data_id,
189 test_info->mgr_lcore, NULL,
194 test_info->expected_count++;
196 /* randomly leave timer running or stop it */
200 ret = rte_timer_alt_stop(test_info->timer_data_id,
203 test_info->expected_count--;
204 rte_mempool_put(test_info->tim_mempool,
216 REGISTER_TEST_COMMAND(timer_secondary_autotest, test_timer_secondary);