2 * collectd - src/utils_dpdk.h
5 * Copyright(c) 2016 Intel Corporation. All rights reserved.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * Maryam Tahhan <maryam.tahhan@intel.com>
27 * Harry van Haaren <harry.van.haaren@intel.com>
28 * Taras Chornyi <tarasx.chornyi@intel.com>
29 * Serhiy Pshyk <serhiyx.pshyk@intel.com>
30 * Krzysztof Matczak <krzysztofx.matczak@intel.com>
36 #include <rte_version.h>
38 #define ERR_BUF_SIZE 1024
49 struct dpdk_eal_config_s {
50 char coremask[DATA_MAX_NAME_LEN];
51 char memory_channels[DATA_MAX_NAME_LEN];
52 char socket_memory[DATA_MAX_NAME_LEN];
53 char process_type[DATA_MAX_NAME_LEN];
54 char file_prefix[DATA_MAX_NAME_LEN];
56 typedef struct dpdk_eal_config_s dpdk_eal_config_t;
62 typedef struct uint128_s uint128_t;
64 typedef struct dpdk_helper_ctx_s dpdk_helper_ctx_t;
66 int dpdk_helper_init(const char *name, size_t data_size,
67 dpdk_helper_ctx_t **pphc);
68 int dpdk_helper_shutdown(dpdk_helper_ctx_t *phc);
69 int dpdk_helper_eal_config_parse(dpdk_helper_ctx_t *phc, oconfig_item_t *ci);
70 int dpdk_helper_eal_config_set(dpdk_helper_ctx_t *phc, dpdk_eal_config_t *ec);
71 int dpdk_helper_eal_config_get(dpdk_helper_ctx_t *phc, dpdk_eal_config_t *ec);
72 int dpdk_helper_command(dpdk_helper_ctx_t *phc, enum DPDK_CMD cmd, int *result,
73 cdtime_t cmd_wait_time);
74 void *dpdk_helper_priv_get(dpdk_helper_ctx_t *phc);
75 int dpdk_helper_data_size_get(dpdk_helper_ctx_t *phc);
77 /* forward declaration of handler function that is called by helper from
78 * child process. not implemented in helper. must be provided by client. */
79 int dpdk_helper_command_handler(dpdk_helper_ctx_t *phc, enum DPDK_CMD cmd);
81 uint128_t str_to_uint128(const char *str, int len);
83 /* logging functions that should be used in child process */
84 #define DPDK_CHILD_LOG(...) fprintf(stdout, __VA_ARGS__)
85 #define DPDK_CHILD_TRACE(_name) \
86 fprintf(stdout, "%s:%s:%d pid=%u\n", _name, __FUNCTION__, __LINE__, getpid())
88 #endif /* UTILS_DPDK_H */