1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2018 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
20 #include <sys/queue.h>
23 #include <rte_compat.h>
24 #include <rte_common.h>
25 #include <rte_debug.h>
26 #include <rte_memory.h>
27 #include <rte_launch.h>
29 #include <rte_errno.h>
30 #include <rte_per_lcore.h>
31 #include <rte_lcore.h>
32 #include <rte_service_component.h>
34 #include <rte_random.h>
35 #include <rte_cycles.h>
36 #include <rte_string_fns.h>
37 #include <rte_cpuflags.h>
38 #include <rte_interrupts.h>
41 #include <rte_devargs.h>
42 #include <rte_version.h>
44 #include <rte_atomic.h>
45 #include <malloc_heap.h>
46 #include <rte_telemetry.h>
48 #include "eal_private.h"
49 #include "eal_thread.h"
50 #include "eal_internal_cfg.h"
51 #include "eal_filesystem.h"
52 #include "eal_hugepages.h"
53 #include "eal_options.h"
54 #include "eal_memcfg.h"
55 #include "eal_trace.h"
57 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
59 /* define fd variable here, because file needs to be kept open for the
60 * duration of the program, as we hold a write lock on it in the primary proc */
61 static int mem_cfg_fd = -1;
63 static struct flock wr_lock = {
66 .l_start = offsetof(struct rte_mem_config, memsegs),
67 .l_len = RTE_SIZEOF_FIELD(struct rte_mem_config, memsegs),
70 /* internal configuration (per-core) */
71 struct lcore_config lcore_config[RTE_MAX_LCORE];
73 /* used by rte_rdtsc() */
74 int rte_cycles_vmware_tsc_map;
76 static const char *default_runtime_dir = "/var/run";
79 eal_create_runtime_dir(void)
81 const char *directory = default_runtime_dir;
82 const char *xdg_runtime_dir = getenv("XDG_RUNTIME_DIR");
83 const char *fallback = "/tmp";
84 char run_dir[PATH_MAX];
89 /* try XDG path first, fall back to /tmp */
90 if (xdg_runtime_dir != NULL)
91 directory = xdg_runtime_dir;
95 /* create DPDK subdirectory under runtime dir */
96 ret = snprintf(tmp, sizeof(tmp), "%s/dpdk", directory);
97 if (ret < 0 || ret == sizeof(tmp)) {
98 RTE_LOG(ERR, EAL, "Error creating DPDK runtime path name\n");
102 /* create prefix-specific subdirectory under DPDK runtime dir */
103 ret = snprintf(run_dir, sizeof(run_dir), "%s/%s",
104 tmp, eal_get_hugefile_prefix());
105 if (ret < 0 || ret == sizeof(run_dir)) {
106 RTE_LOG(ERR, EAL, "Error creating prefix-specific runtime path name\n");
110 /* create the path if it doesn't exist. no "mkdir -p" here, so do it
113 ret = mkdir(tmp, 0700);
114 if (ret < 0 && errno != EEXIST) {
115 RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
116 tmp, strerror(errno));
120 ret = mkdir(run_dir, 0700);
121 if (ret < 0 && errno != EEXIST) {
122 RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
123 run_dir, strerror(errno));
127 if (eal_set_runtime_dir(run_dir, sizeof(run_dir)))
134 eal_clean_runtime_dir(void)
136 /* FreeBSD doesn't need this implemented for now, because, unlike Linux,
137 * FreeBSD doesn't create per-process files, so no need to clean up.
142 /* parse a sysfs (or other) file containing one integer value */
144 eal_parse_sysfs_value(const char *filename, unsigned long *val)
150 if ((f = fopen(filename, "r")) == NULL) {
151 RTE_LOG(ERR, EAL, "%s(): cannot open sysfs value %s\n",
156 if (fgets(buf, sizeof(buf), f) == NULL) {
157 RTE_LOG(ERR, EAL, "%s(): cannot read sysfs value %s\n",
162 *val = strtoul(buf, &end, 0);
163 if ((buf[0] == '\0') || (end == NULL) || (*end != '\n')) {
164 RTE_LOG(ERR, EAL, "%s(): cannot parse sysfs value %s\n",
174 /* create memory configuration in shared/mmap memory. Take out
175 * a write lock on the memsegs, so we can auto-detect primary/secondary.
176 * This means we never close the file while running (auto-close on exit).
177 * We also don't lock the whole file, so that in future we can use read-locks
178 * on other parts, e.g. memzones, to detect if there are running secondary
181 rte_eal_config_create(void)
183 struct rte_config *config = rte_eal_get_configuration();
184 const struct internal_config *internal_conf =
185 eal_get_internal_configuration();
186 size_t page_sz = sysconf(_SC_PAGE_SIZE);
187 size_t cfg_len = sizeof(struct rte_mem_config);
188 size_t cfg_len_aligned = RTE_ALIGN(cfg_len, page_sz);
189 void *rte_mem_cfg_addr, *mapped_mem_cfg_addr;
192 const char *pathname = eal_runtime_config_path();
194 if (internal_conf->no_shconf)
197 /* map the config before base address so that we don't waste a page */
198 if (internal_conf->base_virtaddr != 0)
199 rte_mem_cfg_addr = (void *)
200 RTE_ALIGN_FLOOR(internal_conf->base_virtaddr -
201 sizeof(struct rte_mem_config), page_sz);
203 rte_mem_cfg_addr = NULL;
206 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600);
207 if (mem_cfg_fd < 0) {
208 RTE_LOG(ERR, EAL, "Cannot open '%s' for rte_mem_config\n",
214 retval = ftruncate(mem_cfg_fd, cfg_len);
218 RTE_LOG(ERR, EAL, "Cannot resize '%s' for rte_mem_config\n",
223 retval = fcntl(mem_cfg_fd, F_SETLK, &wr_lock);
227 RTE_LOG(ERR, EAL, "Cannot create lock on '%s'. Is another primary "
228 "process running?\n", pathname);
232 /* reserve space for config */
233 rte_mem_cfg_addr = eal_get_virtual_area(rte_mem_cfg_addr,
234 &cfg_len_aligned, page_sz, 0, 0);
235 if (rte_mem_cfg_addr == NULL) {
236 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config\n");
242 /* remap the actual file into the space we've just reserved */
243 mapped_mem_cfg_addr = mmap(rte_mem_cfg_addr,
244 cfg_len_aligned, PROT_READ | PROT_WRITE,
245 MAP_SHARED | MAP_FIXED, mem_cfg_fd, 0);
246 if (mapped_mem_cfg_addr == MAP_FAILED) {
247 RTE_LOG(ERR, EAL, "Cannot remap memory for rte_config\n");
248 munmap(rte_mem_cfg_addr, cfg_len);
254 memcpy(rte_mem_cfg_addr, config->mem_config, sizeof(struct rte_mem_config));
255 config->mem_config = rte_mem_cfg_addr;
257 /* store address of the config in the config itself so that secondary
258 * processes could later map the config into this exact location
260 config->mem_config->mem_cfg_addr = (uintptr_t) rte_mem_cfg_addr;
264 /* attach to an existing shared memory config */
266 rte_eal_config_attach(void)
268 void *rte_mem_cfg_addr;
269 const char *pathname = eal_runtime_config_path();
270 struct rte_config *config = rte_eal_get_configuration();
271 const struct internal_config *internal_conf =
272 eal_get_internal_configuration();
275 if (internal_conf->no_shconf)
279 mem_cfg_fd = open(pathname, O_RDWR);
280 if (mem_cfg_fd < 0) {
281 RTE_LOG(ERR, EAL, "Cannot open '%s' for rte_mem_config\n",
287 rte_mem_cfg_addr = mmap(NULL, sizeof(*config->mem_config),
288 PROT_READ, MAP_SHARED, mem_cfg_fd, 0);
289 /* don't close the fd here, it will be closed on reattach */
290 if (rte_mem_cfg_addr == MAP_FAILED) {
293 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config! error %i (%s)\n",
294 errno, strerror(errno));
298 config->mem_config = rte_mem_cfg_addr;
303 /* reattach the shared config at exact memory location primary process has it */
305 rte_eal_config_reattach(void)
307 struct rte_mem_config *mem_config;
308 void *rte_mem_cfg_addr;
309 struct rte_config *config = rte_eal_get_configuration();
310 const struct internal_config *internal_conf =
311 eal_get_internal_configuration();
313 if (internal_conf->no_shconf)
316 /* save the address primary process has mapped shared config to */
318 (void *)(uintptr_t)config->mem_config->mem_cfg_addr;
320 /* unmap original config */
321 munmap(config->mem_config, sizeof(struct rte_mem_config));
323 /* remap the config at proper address */
324 mem_config = (struct rte_mem_config *) mmap(rte_mem_cfg_addr,
325 sizeof(*mem_config), PROT_READ | PROT_WRITE, MAP_SHARED,
330 if (mem_config == MAP_FAILED || mem_config != rte_mem_cfg_addr) {
331 if (mem_config != MAP_FAILED) {
332 /* errno is stale, don't use */
333 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config at [%p], got [%p]"
334 " - please use '--" OPT_BASE_VIRTADDR
336 rte_mem_cfg_addr, mem_config);
337 munmap(mem_config, sizeof(struct rte_mem_config));
340 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config! error %i (%s)\n",
341 errno, strerror(errno));
345 config->mem_config = mem_config;
350 /* Detect if we are a primary or a secondary process */
352 eal_proc_type_detect(void)
354 enum rte_proc_type_t ptype = RTE_PROC_PRIMARY;
355 const char *pathname = eal_runtime_config_path();
356 const struct internal_config *internal_conf =
357 eal_get_internal_configuration();
359 /* if there no shared config, there can be no secondary processes */
360 if (!internal_conf->no_shconf) {
361 /* if we can open the file but not get a write-lock we are a
362 * secondary process. NOTE: if we get a file handle back, we
363 * keep that open and don't close it to prevent a race condition
364 * between multiple opens.
366 if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) &&
367 (fcntl(mem_cfg_fd, F_SETLK, &wr_lock) < 0))
368 ptype = RTE_PROC_SECONDARY;
371 RTE_LOG(INFO, EAL, "Auto-detected process type: %s\n",
372 ptype == RTE_PROC_PRIMARY ? "PRIMARY" : "SECONDARY");
377 /* Sets up rte_config structure with the pointer to shared memory config.*/
379 rte_config_init(void)
381 struct rte_config *config = rte_eal_get_configuration();
382 const struct internal_config *internal_conf =
383 eal_get_internal_configuration();
385 config->process_type = internal_conf->process_type;
387 switch (config->process_type) {
388 case RTE_PROC_PRIMARY:
389 if (rte_eal_config_create() < 0)
391 eal_mcfg_update_from_internal();
393 case RTE_PROC_SECONDARY:
394 if (rte_eal_config_attach() < 0)
396 eal_mcfg_wait_complete();
397 if (eal_mcfg_check_version() < 0) {
398 RTE_LOG(ERR, EAL, "Primary and secondary process DPDK version mismatch\n");
401 if (rte_eal_config_reattach() < 0)
403 eal_mcfg_update_internal();
406 case RTE_PROC_INVALID:
407 RTE_LOG(ERR, EAL, "Invalid process type %d\n",
408 config->process_type);
417 eal_usage(const char *prgname)
419 rte_usage_hook_t hook = eal_get_application_usage_hook();
421 printf("\nUsage: %s ", prgname);
423 /* Allow the application to print its usage message too if hook is set */
425 printf("===== Application Usage =====\n\n");
431 eal_get_hugepage_mem_size(void)
435 struct internal_config *internal_conf =
436 eal_get_internal_configuration();
438 for (i = 0; i < internal_conf->num_hugepage_sizes; i++) {
439 struct hugepage_info *hpi = &internal_conf->hugepage_info[i];
440 if (strnlen(hpi->hugedir, sizeof(hpi->hugedir)) != 0) {
441 for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
442 size += hpi->hugepage_sz * hpi->num_pages[j];
447 return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
450 /* Parse the arguments for --log-level only */
452 eal_log_level_parse(int argc, char **argv)
457 const int old_optind = optind;
458 const int old_optopt = optopt;
459 const int old_optreset = optreset;
460 char * const old_optarg = optarg;
461 struct internal_config *internal_conf =
462 eal_get_internal_configuration();
468 while ((opt = getopt_long(argc, argvopt, eal_short_options,
469 eal_long_options, &option_index)) != EOF) {
473 /* getopt is not happy, stop right now */
477 ret = (opt == OPT_LOG_LEVEL_NUM) ?
478 eal_parse_common_option(opt, optarg, internal_conf) : 0;
480 /* common parser is not happy */
485 /* restore getopt lib */
488 optreset = old_optreset;
492 /* Parse the argument given in the command line of the application */
494 eal_parse_args(int argc, char **argv)
499 char *prgname = argv[0];
500 const int old_optind = optind;
501 const int old_optopt = optopt;
502 const int old_optreset = optreset;
503 char * const old_optarg = optarg;
504 struct internal_config *internal_conf =
505 eal_get_internal_configuration();
511 while ((opt = getopt_long(argc, argvopt, eal_short_options,
512 eal_long_options, &option_index)) != EOF) {
514 /* getopt didn't recognise the option */
521 ret = eal_parse_common_option(opt, optarg, internal_conf);
522 /* common parser is not happy */
528 /* common parser handled this option */
533 case OPT_MBUF_POOL_OPS_NAME_NUM:
535 char *ops_name = strdup(optarg);
536 if (ops_name == NULL)
537 RTE_LOG(ERR, EAL, "Could not store mbuf pool ops name\n");
539 /* free old ops name */
540 if (internal_conf->user_mbuf_pool_ops_name !=
542 free(internal_conf->user_mbuf_pool_ops_name);
544 internal_conf->user_mbuf_pool_ops_name =
553 if (opt < OPT_LONG_MIN_NUM && isprint(opt)) {
554 RTE_LOG(ERR, EAL, "Option %c is not supported "
555 "on FreeBSD\n", opt);
556 } else if (opt >= OPT_LONG_MIN_NUM &&
557 opt < OPT_LONG_MAX_NUM) {
558 RTE_LOG(ERR, EAL, "Option %s is not supported "
560 eal_long_options[option_index].name);
562 RTE_LOG(ERR, EAL, "Option %d is not supported "
563 "on FreeBSD\n", opt);
571 /* create runtime data directory */
572 if (internal_conf->no_shconf == 0 &&
573 eal_create_runtime_dir() < 0) {
574 RTE_LOG(ERR, EAL, "Cannot create runtime directory\n");
579 if (eal_adjust_config(internal_conf) != 0) {
585 if (eal_check_common_options(internal_conf) != 0) {
592 argv[optind-1] = prgname;
596 /* restore getopt lib */
599 optreset = old_optreset;
606 check_socket(const struct rte_memseg_list *msl, void *arg)
608 int *socket_id = arg;
613 if (msl->socket_id == *socket_id && msl->memseg_arr.count != 0)
620 eal_check_mem_on_local_socket(void)
623 const struct rte_config *config = rte_eal_get_configuration();
625 socket_id = rte_lcore_to_socket_id(config->master_lcore);
627 if (rte_memseg_list_walk(check_socket, &socket_id) == 0)
628 RTE_LOG(WARNING, EAL, "WARNING: Master core has no memory on local socket!\n");
633 sync_func(__rte_unused void *arg)
637 /* Abstraction for port I/0 privilege */
639 rte_eal_iopl_init(void)
644 fd = open("/dev/io", O_RDWR);
648 /* keep fd open for iopl */
652 static void rte_eal_init_alert(const char *msg)
654 fprintf(stderr, "EAL: FATAL: %s\n", msg);
655 RTE_LOG(ERR, EAL, "%s\n", msg);
658 /* Launch threads, called at application init(). */
660 rte_eal_init(int argc, char **argv)
664 static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
665 char cpuset[RTE_CPU_AFFINITY_STR_LEN];
666 char thread_name[RTE_MAX_THREAD_NAME_LEN];
667 const struct rte_config *config = rte_eal_get_configuration();
668 struct internal_config *internal_conf =
669 eal_get_internal_configuration();
671 /* checks if the machine is adequate */
672 if (!rte_cpu_is_supported()) {
673 rte_eal_init_alert("unsupported cpu type.");
678 if (!rte_atomic32_test_and_set(&run_once)) {
679 rte_eal_init_alert("already called initialization.");
680 rte_errno = EALREADY;
684 thread_id = pthread_self();
686 eal_reset_internal_config(internal_conf);
688 /* clone argv to report out later in telemetry */
689 eal_save_args(argc, argv);
691 /* set log level as early as possible */
692 eal_log_level_parse(argc, argv);
694 if (rte_eal_cpu_init() < 0) {
695 rte_eal_init_alert("Cannot detect lcores.");
700 fctret = eal_parse_args(argc, argv);
702 rte_eal_init_alert("Invalid 'command line' arguments.");
704 rte_atomic32_clear(&run_once);
708 /* FreeBSD always uses legacy memory model */
709 internal_conf->legacy_mem = true;
711 if (eal_plugins_init() < 0) {
712 rte_eal_init_alert("Cannot init plugins");
714 rte_atomic32_clear(&run_once);
718 if (eal_trace_init() < 0) {
719 rte_eal_init_alert("Cannot init trace");
721 rte_atomic32_clear(&run_once);
725 if (eal_option_device_parse()) {
727 rte_atomic32_clear(&run_once);
731 if (rte_config_init() < 0) {
732 rte_eal_init_alert("Cannot init config");
736 if (rte_eal_intr_init() < 0) {
737 rte_eal_init_alert("Cannot init interrupt-handling thread");
741 if (rte_eal_alarm_init() < 0) {
742 rte_eal_init_alert("Cannot init alarm");
743 /* rte_eal_alarm_init sets rte_errno on failure. */
747 /* Put mp channel init before bus scan so that we can init the vdev
748 * bus through mp channel in the secondary process before the bus scan.
750 if (rte_mp_channel_init() < 0 && rte_errno != ENOTSUP) {
751 rte_eal_init_alert("failed to init mp channel");
752 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
758 if (rte_bus_scan()) {
759 rte_eal_init_alert("Cannot scan the buses for devices");
761 rte_atomic32_clear(&run_once);
765 /* if no EAL option "--iova-mode=<pa|va>", use bus IOVA scheme */
766 if (internal_conf->iova_mode == RTE_IOVA_DC) {
767 /* autodetect the IOVA mapping mode (default is RTE_IOVA_PA) */
768 enum rte_iova_mode iova_mode = rte_bus_get_iommu_class();
770 if (iova_mode == RTE_IOVA_DC)
771 iova_mode = RTE_IOVA_PA;
772 rte_eal_get_configuration()->iova_mode = iova_mode;
774 rte_eal_get_configuration()->iova_mode =
775 internal_conf->iova_mode;
778 RTE_LOG(INFO, EAL, "Selected IOVA mode '%s'\n",
779 rte_eal_iova_mode() == RTE_IOVA_PA ? "PA" : "VA");
781 if (internal_conf->no_hugetlbfs == 0) {
782 /* rte_config isn't initialized yet */
783 ret = internal_conf->process_type == RTE_PROC_PRIMARY ?
784 eal_hugepage_info_init() :
785 eal_hugepage_info_read();
787 rte_eal_init_alert("Cannot get hugepage information.");
789 rte_atomic32_clear(&run_once);
794 if (internal_conf->memory == 0 && internal_conf->force_sockets == 0) {
795 if (internal_conf->no_hugetlbfs)
796 internal_conf->memory = MEMSIZE_IF_NO_HUGE_PAGE;
798 internal_conf->memory = eal_get_hugepage_mem_size();
801 if (internal_conf->vmware_tsc_map == 1) {
802 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
803 rte_cycles_vmware_tsc_map = 1;
804 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
805 "you must have monitor_control.pseudo_perfctr = TRUE\n");
807 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
808 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
812 /* in secondary processes, memory init may allocate additional fbarrays
813 * not present in primary processes, so to avoid any potential issues,
814 * initialize memzones first.
816 if (rte_eal_memzone_init() < 0) {
817 rte_eal_init_alert("Cannot init memzone");
822 if (rte_eal_memory_init() < 0) {
823 rte_eal_init_alert("Cannot init memory");
828 if (rte_eal_malloc_heap_init() < 0) {
829 rte_eal_init_alert("Cannot init malloc heap");
834 if (rte_eal_tailqs_init() < 0) {
835 rte_eal_init_alert("Cannot init tail queues for objects");
840 if (rte_eal_timer_init() < 0) {
841 rte_eal_init_alert("Cannot init HPET or TSC timers");
846 eal_check_mem_on_local_socket();
848 eal_thread_init_master(config->master_lcore);
850 ret = eal_thread_dump_affinity(cpuset, sizeof(cpuset));
852 RTE_LOG(DEBUG, EAL, "Master lcore %u is ready (tid=%p;cpuset=[%s%s])\n",
853 config->master_lcore, thread_id, cpuset,
854 ret == 0 ? "" : "...");
856 RTE_LCORE_FOREACH_SLAVE(i) {
859 * create communication pipes between master thread
862 if (pipe(lcore_config[i].pipe_master2slave) < 0)
863 rte_panic("Cannot create pipe\n");
864 if (pipe(lcore_config[i].pipe_slave2master) < 0)
865 rte_panic("Cannot create pipe\n");
867 lcore_config[i].state = WAIT;
869 /* create a thread for each lcore */
870 ret = pthread_create(&lcore_config[i].thread_id, NULL,
871 eal_thread_loop, NULL);
873 rte_panic("Cannot create thread\n");
875 /* Set thread_name for aid in debugging. */
876 snprintf(thread_name, sizeof(thread_name),
877 "lcore-slave-%d", i);
878 rte_thread_setname(lcore_config[i].thread_id, thread_name);
882 * Launch a dummy function on all slave lcores, so that master lcore
883 * knows they are all ready when this function returns.
885 rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
886 rte_eal_mp_wait_lcore();
888 /* initialize services so vdevs register service during bus_probe. */
889 ret = rte_service_init();
891 rte_eal_init_alert("rte_service_init() failed");
896 /* Probe all the buses and devices/drivers on them */
897 if (rte_bus_probe()) {
898 rte_eal_init_alert("Cannot probe devices");
903 /* initialize default service/lcore mappings and start running. Ignore
904 * -ENOTSUP, as it indicates no service coremask passed to EAL.
906 ret = rte_service_start_with_defaults();
907 if (ret < 0 && ret != -ENOTSUP) {
913 * Clean up unused files in runtime directory. We do this at the end of
914 * init and not at the beginning because we want to clean stuff up
915 * whether we are primary or secondary process, but we cannot remove
916 * primary process' files because secondary should be able to run even
917 * if primary process is dead.
919 * In no_shconf mode, no runtime directory is created in the first
920 * place, so no cleanup needed.
922 if (!internal_conf->no_shconf && eal_clean_runtime_dir() < 0) {
923 rte_eal_init_alert("Cannot clear runtime directory");
926 if (!internal_conf->no_telemetry) {
927 const char *error_str = NULL;
928 if (rte_telemetry_init(rte_eal_get_runtime_dir(),
929 &internal_conf->ctrl_cpuset, &error_str)
931 rte_eal_init_alert(error_str);
934 if (error_str != NULL)
935 RTE_LOG(NOTICE, EAL, "%s\n", error_str);
944 rte_eal_cleanup(void)
946 struct internal_config *internal_conf =
947 eal_get_internal_configuration();
948 rte_service_finalize();
949 rte_mp_channel_cleanup();
952 eal_cleanup_config(internal_conf);
956 int rte_eal_create_uio_dev(void)
958 const struct internal_config *internal_conf =
959 eal_get_internal_configuration();
960 return internal_conf->create_uio_dev;
964 rte_eal_vfio_intr_mode(void)
966 return RTE_INTR_MODE_NONE;
970 rte_eal_vfio_get_vf_token(__rte_unused rte_uuid_t vf_token)
974 int rte_vfio_setup_device(__rte_unused const char *sysfs_base,
975 __rte_unused const char *dev_addr,
976 __rte_unused int *vfio_dev_fd,
977 __rte_unused struct vfio_device_info *device_info)
982 int rte_vfio_release_device(__rte_unused const char *sysfs_base,
983 __rte_unused const char *dev_addr,
989 int rte_vfio_enable(__rte_unused const char *modname)
994 int rte_vfio_is_enabled(__rte_unused const char *modname)
999 int rte_vfio_noiommu_is_enabled(void)
1004 int rte_vfio_clear_group(__rte_unused int vfio_group_fd)
1010 rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
1011 __rte_unused const char *dev_addr,
1012 __rte_unused int *iommu_group_num)
1018 rte_vfio_get_container_fd(void)
1024 rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
1030 rte_vfio_container_create(void)
1036 rte_vfio_container_destroy(__rte_unused int container_fd)
1042 rte_vfio_container_group_bind(__rte_unused int container_fd,
1043 __rte_unused int iommu_group_num)
1049 rte_vfio_container_group_unbind(__rte_unused int container_fd,
1050 __rte_unused int iommu_group_num)
1056 rte_vfio_container_dma_map(__rte_unused int container_fd,
1057 __rte_unused uint64_t vaddr,
1058 __rte_unused uint64_t iova,
1059 __rte_unused uint64_t len)
1065 rte_vfio_container_dma_unmap(__rte_unused int container_fd,
1066 __rte_unused uint64_t vaddr,
1067 __rte_unused uint64_t iova,
1068 __rte_unused uint64_t len)