Lines Matching refs:thread_id

157 thread_is_running(uint32_t thread_id)  in thread_is_running()  argument
161 thread_state = rte_eal_get_lcore_state(thread_id); in thread_is_running()
176 return thread_is_running(p->thread_id); in pipeline_is_running()
232 thread_msg_send_recv(uint32_t thread_id, in thread_msg_send_recv() argument
235 struct thread *t = &thread[thread_id]; in thread_msg_send_recv()
255 thread_pipeline_enable(uint32_t thread_id, in thread_pipeline_enable() argument
266 if ((thread_id >= RTE_MAX_LCORE) || in thread_pipeline_enable()
273 t = &thread[thread_id]; in thread_pipeline_enable()
278 if (!thread_is_running(thread_id)) { in thread_pipeline_enable()
279 struct thread_data *td = &thread_data[thread_id]; in thread_pipeline_enable()
302 p->thread_id = thread_id; in thread_pipeline_enable()
325 rsp = thread_msg_send_recv(thread_id, req); in thread_pipeline_enable()
337 p->thread_id = thread_id; in thread_pipeline_enable()
344 thread_pipeline_disable(uint32_t thread_id, in thread_pipeline_disable() argument
354 if ((thread_id >= RTE_MAX_LCORE) || in thread_pipeline_disable()
358 t = &thread[thread_id]; in thread_pipeline_disable()
365 if (p->thread_id != thread_id) in thread_pipeline_disable()
368 if (!thread_is_running(thread_id)) { in thread_pipeline_disable()
369 struct thread_data *td = &thread_data[thread_id]; in thread_pipeline_disable()
410 rsp = thread_msg_send_recv(thread_id, req); in thread_pipeline_disable()
3087 uint32_t thread_id, i; in thread_main() local
3089 thread_id = rte_lcore_id(); in thread_main()
3090 t = &thread_data[thread_id]; in thread_main()