DPDK  21.02.0
rte_service.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Intel Corporation
3  */
4 
5 #ifndef _RTE_SERVICE_H_
6 #define _RTE_SERVICE_H_
7 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 #include<stdio.h>
31 #include <stdint.h>
32 #include <sys/queue.h>
33 
34 #include <rte_config.h>
35 #include <rte_lcore.h>
36 
37 #define RTE_SERVICE_NAME_MAX 32
38 
39 /* Capabilities of a service.
40  *
41  * Use the *rte_service_probe_capability* function to check if a service is
42  * capable of a specific capability.
43  */
47 #define RTE_SERVICE_CAP_MT_SAFE (1 << 0)
48 
57 uint32_t rte_service_get_count(void);
58 
81 int32_t rte_service_get_by_name(const char *name, uint32_t *service_id);
82 
89 const char *rte_service_get_name(uint32_t id);
90 
99 int32_t rte_service_probe_capability(uint32_t id, uint32_t capability);
100 
124 int32_t rte_service_map_lcore_set(uint32_t service_id, uint32_t lcore,
125  uint32_t enable);
126 
137 int32_t rte_service_map_lcore_get(uint32_t service_id, uint32_t lcore);
138 
151 int32_t rte_service_runstate_set(uint32_t id, uint32_t runstate);
152 
166 int32_t rte_service_runstate_get(uint32_t id);
167 
182 int32_t
183 rte_service_may_be_active(uint32_t id);
184 
196 int32_t rte_service_set_runstate_mapped_check(uint32_t id, int32_t enable);
197 
231 int32_t rte_service_run_iter_on_app_lcore(uint32_t id,
232  uint32_t serialize_multithread_unsafe);
233 
246 int32_t rte_service_lcore_start(uint32_t lcore_id);
247 
266 int32_t rte_service_lcore_stop(uint32_t lcore_id);
267 
281 __rte_experimental
282 int32_t rte_service_lcore_may_be_active(uint32_t lcore_id);
283 
295 int32_t rte_service_lcore_add(uint32_t lcore);
296 
306 int32_t rte_service_lcore_del(uint32_t lcore);
307 
320 int32_t rte_service_lcore_count(void);
321 
333 int32_t rte_service_lcore_reset_all(void);
334 
344 int32_t rte_service_set_stats_enable(uint32_t id, int32_t enable);
345 
362 int32_t rte_service_lcore_list(uint32_t array[], uint32_t n);
363 
372 int32_t rte_service_lcore_count_services(uint32_t lcore);
373 
381 int32_t rte_service_dump(FILE *f, uint32_t id);
382 
386 #define RTE_SERVICE_ATTR_CYCLES 0
387 
391 #define RTE_SERVICE_ATTR_CALL_COUNT 1
392 
399 int32_t rte_service_attr_get(uint32_t id, uint32_t attr_id,
400  uint64_t *attr_value);
401 
409 int32_t rte_service_attr_reset_all(uint32_t id);
410 
414 #define RTE_SERVICE_LCORE_ATTR_LOOPS 0
415 
426 int32_t
427 rte_service_lcore_attr_get(uint32_t lcore, uint32_t attr_id,
428  uint64_t *attr_value);
429 
438 int32_t
439 rte_service_lcore_attr_reset_all(uint32_t lcore);
440 
441 #ifdef __cplusplus
442 }
443 #endif
444 
445 
446 #endif /* _RTE_SERVICE_H_ */
int32_t rte_service_lcore_stop(uint32_t lcore_id)
int32_t rte_service_lcore_list(uint32_t array[], uint32_t n)
int32_t rte_service_map_lcore_set(uint32_t service_id, uint32_t lcore, uint32_t enable)
int32_t rte_service_attr_get(uint32_t id, uint32_t attr_id, uint64_t *attr_value)
int32_t rte_service_run_iter_on_app_lcore(uint32_t id, uint32_t serialize_multithread_unsafe)
int32_t rte_service_lcore_add(uint32_t lcore)
int32_t rte_service_lcore_attr_get(uint32_t lcore, uint32_t attr_id, uint64_t *attr_value)
int32_t rte_service_lcore_del(uint32_t lcore)
int32_t rte_service_attr_reset_all(uint32_t id)
int32_t rte_service_set_stats_enable(uint32_t id, int32_t enable)
int32_t rte_service_lcore_attr_reset_all(uint32_t lcore)
int32_t rte_service_may_be_active(uint32_t id)
int32_t rte_service_map_lcore_get(uint32_t service_id, uint32_t lcore)
int32_t rte_service_runstate_set(uint32_t id, uint32_t runstate)
int32_t rte_service_set_runstate_mapped_check(uint32_t id, int32_t enable)
int32_t rte_service_lcore_reset_all(void)
int32_t rte_service_probe_capability(uint32_t id, uint32_t capability)
int32_t rte_service_lcore_count(void)
int32_t rte_service_runstate_get(uint32_t id)
uint32_t rte_service_get_count(void)
int32_t rte_service_get_by_name(const char *name, uint32_t *service_id)
int32_t rte_service_lcore_start(uint32_t lcore_id)
const char * rte_service_get_name(uint32_t id)
__rte_experimental int32_t rte_service_lcore_may_be_active(uint32_t lcore_id)
int32_t rte_service_dump(FILE *f, uint32_t id)
int32_t rte_service_lcore_count_services(uint32_t lcore)