DPDK  22.07.0
rte_lcore.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4 
5 #ifndef _RTE_LCORE_H_
6 #define _RTE_LCORE_H_
7 
14 #include <rte_config.h>
15 #include <rte_per_lcore.h>
16 #include <rte_eal.h>
17 #include <rte_launch.h>
18 #include <rte_thread.h>
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #define LCORE_ID_ANY UINT32_MAX
26 RTE_DECLARE_PER_LCORE(unsigned, _lcore_id);
31 enum rte_lcore_role_t {
32  ROLE_RTE,
33  ROLE_OFF,
34  ROLE_SERVICE,
35  ROLE_NON_EAL,
36 };
37 
46 enum rte_lcore_role_t rte_eal_lcore_role(unsigned int lcore_id);
47 
59 int
60 rte_lcore_has_role(unsigned int lcore_id, enum rte_lcore_role_t role);
61 
75 static inline unsigned
77 {
78  return RTE_PER_LCORE(_lcore_id);
79 }
80 
87 unsigned int rte_get_main_lcore(void);
88 
95 unsigned int rte_lcore_count(void);
96 
111 int rte_lcore_index(int lcore_id);
112 
119 unsigned int rte_socket_id(void);
120 
131 unsigned int
132 rte_socket_count(void);
133 
148 int
149 rte_socket_id_by_idx(unsigned int idx);
150 
159 unsigned int
160 rte_lcore_to_socket_id(unsigned int lcore_id);
161 
170 int rte_lcore_to_cpu_id(int lcore_id);
171 
172 #ifdef RTE_HAS_CPUSET
173 
182 rte_cpuset_t rte_lcore_cpuset(unsigned int lcore_id);
183 
184 #endif /* RTE_HAS_CPUSET */
185 
195 int rte_lcore_is_enabled(unsigned int lcore_id);
196 
210 unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap);
211 
215 #define RTE_LCORE_FOREACH(i) \
216  for (i = rte_get_next_lcore(-1, 0, 0); \
217  i < RTE_MAX_LCORE; \
218  i = rte_get_next_lcore(i, 0, 0))
219 
223 #define RTE_LCORE_FOREACH_WORKER(i) \
224  for (i = rte_get_next_lcore(-1, 1, 0); \
225  i < RTE_MAX_LCORE; \
226  i = rte_get_next_lcore(i, 1, 0))
227 
239 typedef int (*rte_lcore_init_cb)(unsigned int lcore_id, void *arg);
240 
249 typedef void (*rte_lcore_uninit_cb)(unsigned int lcore_id, void *arg);
250 
279 void *
280 rte_lcore_callback_register(const char *name, rte_lcore_init_cb init,
281  rte_lcore_uninit_cb uninit, void *arg);
282 
293 void
294 rte_lcore_callback_unregister(void *handle);
295 
307 typedef int (*rte_lcore_iterate_cb)(unsigned int lcore_id, void *arg);
308 
325 int
327 
334 void
335 rte_lcore_dump(FILE *f);
336 
349 int rte_thread_setname(pthread_t id, const char *name);
350 
365 __rte_experimental
366 int rte_thread_getname(pthread_t id, char *name, size_t len);
367 
381 int
382 rte_thread_register(void);
383 
387 void
389 
413 int
414 rte_ctrl_thread_create(pthread_t *thread, const char *name,
415  const pthread_attr_t *attr,
416  void *(*start_routine)(void *), void *arg);
417 
418 #ifdef __cplusplus
419 }
420 #endif
421 
422 
423 #endif /* _RTE_LCORE_H_ */
rte_lcore_role_t
Definition: rte_lcore.h:31
void(* rte_lcore_uninit_cb)(unsigned int lcore_id, void *arg)
Definition: rte_lcore.h:249
unsigned int rte_get_main_lcore(void)
int rte_thread_setname(pthread_t id, const char *name)
unsigned int rte_lcore_count(void)
int rte_lcore_has_role(unsigned int lcore_id, enum rte_lcore_role_t role)
unsigned int rte_socket_count(void)
void rte_lcore_callback_unregister(void *handle)
void rte_thread_unregister(void)
rte_cpuset_t rte_lcore_cpuset(unsigned int lcore_id)
int(* rte_lcore_init_cb)(unsigned int lcore_id, void *arg)
Definition: rte_lcore.h:239
unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap)
unsigned int rte_lcore_to_socket_id(unsigned int lcore_id)
int rte_lcore_iterate(rte_lcore_iterate_cb cb, void *arg)
int(* rte_lcore_iterate_cb)(unsigned int lcore_id, void *arg)
Definition: rte_lcore.h:307
unsigned int rte_socket_id(void)
static unsigned rte_lcore_id(void)
Definition: rte_lcore.h:76
int rte_lcore_to_cpu_id(int lcore_id)
int rte_socket_id_by_idx(unsigned int idx)
void * rte_lcore_callback_register(const char *name, rte_lcore_init_cb init, rte_lcore_uninit_cb uninit, void *arg)
int rte_thread_register(void)
int rte_lcore_index(int lcore_id)
int rte_ctrl_thread_create(pthread_t *thread, const char *name, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg)
void rte_lcore_dump(FILE *f)
int rte_lcore_is_enabled(unsigned int lcore_id)
#define RTE_PER_LCORE(name)
Definition: rte_per_lcore.h:44
enum rte_lcore_role_t rte_eal_lcore_role(unsigned int lcore_id)
__rte_experimental int rte_thread_getname(pthread_t id, char *name, size_t len)