New upstream version 18.02
[deb_dpdk.git] / lib / librte_eal / bsdapp / eal / eal.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation.
3  * Copyright(c) 2014 6WIND S.A.
4  */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <stdarg.h>
11 #include <unistd.h>
12 #include <pthread.h>
13 #include <syslog.h>
14 #include <getopt.h>
15 #include <sys/file.h>
16 #include <stddef.h>
17 #include <errno.h>
18 #include <limits.h>
19 #include <sys/mman.h>
20 #include <sys/queue.h>
21
22 #include <rte_compat.h>
23 #include <rte_common.h>
24 #include <rte_debug.h>
25 #include <rte_memory.h>
26 #include <rte_launch.h>
27 #include <rte_eal.h>
28 #include <rte_eal_memconfig.h>
29 #include <rte_errno.h>
30 #include <rte_per_lcore.h>
31 #include <rte_lcore.h>
32 #include <rte_service_component.h>
33 #include <rte_log.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>
39 #include <rte_bus.h>
40 #include <rte_dev.h>
41 #include <rte_devargs.h>
42 #include <rte_version.h>
43 #include <rte_atomic.h>
44 #include <malloc_heap.h>
45
46 #include "eal_private.h"
47 #include "eal_thread.h"
48 #include "eal_internal_cfg.h"
49 #include "eal_filesystem.h"
50 #include "eal_hugepages.h"
51 #include "eal_options.h"
52
53 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
54
55 /* Allow the application to print its usage message too if set */
56 static rte_usage_hook_t rte_application_usage_hook = NULL;
57 /* early configuration structure, when memory config is not mmapped */
58 static struct rte_mem_config early_mem_config;
59
60 /* define fd variable here, because file needs to be kept open for the
61  * duration of the program, as we hold a write lock on it in the primary proc */
62 static int mem_cfg_fd = -1;
63
64 static struct flock wr_lock = {
65                 .l_type = F_WRLCK,
66                 .l_whence = SEEK_SET,
67                 .l_start = offsetof(struct rte_mem_config, memseg),
68                 .l_len = sizeof(early_mem_config.memseg),
69 };
70
71 /* Address of global and public configuration */
72 static struct rte_config rte_config = {
73                 .mem_config = &early_mem_config,
74 };
75
76 /* internal configuration (per-core) */
77 struct lcore_config lcore_config[RTE_MAX_LCORE];
78
79 /* internal configuration */
80 struct internal_config internal_config;
81
82 /* used by rte_rdtsc() */
83 int rte_cycles_vmware_tsc_map;
84
85 /* Return user provided mbuf pool ops name */
86 const char * __rte_experimental
87 rte_eal_mbuf_user_pool_ops(void)
88 {
89         return internal_config.user_mbuf_pool_ops_name;
90 }
91
92 /* Return mbuf pool ops name */
93 const char *
94 rte_eal_mbuf_default_mempool_ops(void)
95 {
96         if (internal_config.user_mbuf_pool_ops_name == NULL)
97                 return RTE_MBUF_DEFAULT_MEMPOOL_OPS;
98
99         return internal_config.user_mbuf_pool_ops_name;
100 }
101
102 /* Return a pointer to the configuration structure */
103 struct rte_config *
104 rte_eal_get_configuration(void)
105 {
106         return &rte_config;
107 }
108
109 enum rte_iova_mode
110 rte_eal_iova_mode(void)
111 {
112         return rte_eal_get_configuration()->iova_mode;
113 }
114
115 /* parse a sysfs (or other) file containing one integer value */
116 int
117 eal_parse_sysfs_value(const char *filename, unsigned long *val)
118 {
119         FILE *f;
120         char buf[BUFSIZ];
121         char *end = NULL;
122
123         if ((f = fopen(filename, "r")) == NULL) {
124                 RTE_LOG(ERR, EAL, "%s(): cannot open sysfs value %s\n",
125                         __func__, filename);
126                 return -1;
127         }
128
129         if (fgets(buf, sizeof(buf), f) == NULL) {
130                 RTE_LOG(ERR, EAL, "%s(): cannot read sysfs value %s\n",
131                         __func__, filename);
132                 fclose(f);
133                 return -1;
134         }
135         *val = strtoul(buf, &end, 0);
136         if ((buf[0] == '\0') || (end == NULL) || (*end != '\n')) {
137                 RTE_LOG(ERR, EAL, "%s(): cannot parse sysfs value %s\n",
138                                 __func__, filename);
139                 fclose(f);
140                 return -1;
141         }
142         fclose(f);
143         return 0;
144 }
145
146
147 /* create memory configuration in shared/mmap memory. Take out
148  * a write lock on the memsegs, so we can auto-detect primary/secondary.
149  * This means we never close the file while running (auto-close on exit).
150  * We also don't lock the whole file, so that in future we can use read-locks
151  * on other parts, e.g. memzones, to detect if there are running secondary
152  * processes. */
153 static void
154 rte_eal_config_create(void)
155 {
156         void *rte_mem_cfg_addr;
157         int retval;
158
159         const char *pathname = eal_runtime_config_path();
160
161         if (internal_config.no_shconf)
162                 return;
163
164         if (mem_cfg_fd < 0){
165                 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0660);
166                 if (mem_cfg_fd < 0)
167                         rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
168         }
169
170         retval = ftruncate(mem_cfg_fd, sizeof(*rte_config.mem_config));
171         if (retval < 0){
172                 close(mem_cfg_fd);
173                 rte_panic("Cannot resize '%s' for rte_mem_config\n", pathname);
174         }
175
176         retval = fcntl(mem_cfg_fd, F_SETLK, &wr_lock);
177         if (retval < 0){
178                 close(mem_cfg_fd);
179                 rte_exit(EXIT_FAILURE, "Cannot create lock on '%s'. Is another primary "
180                                 "process running?\n", pathname);
181         }
182
183         rte_mem_cfg_addr = mmap(NULL, sizeof(*rte_config.mem_config),
184                                 PROT_READ | PROT_WRITE, MAP_SHARED, mem_cfg_fd, 0);
185
186         if (rte_mem_cfg_addr == MAP_FAILED){
187                 rte_panic("Cannot mmap memory for rte_config\n");
188         }
189         memcpy(rte_mem_cfg_addr, &early_mem_config, sizeof(early_mem_config));
190         rte_config.mem_config = rte_mem_cfg_addr;
191 }
192
193 /* attach to an existing shared memory config */
194 static void
195 rte_eal_config_attach(void)
196 {
197         void *rte_mem_cfg_addr;
198         const char *pathname = eal_runtime_config_path();
199
200         if (internal_config.no_shconf)
201                 return;
202
203         if (mem_cfg_fd < 0){
204                 mem_cfg_fd = open(pathname, O_RDWR);
205                 if (mem_cfg_fd < 0)
206                         rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
207         }
208
209         rte_mem_cfg_addr = mmap(NULL, sizeof(*rte_config.mem_config),
210                                 PROT_READ | PROT_WRITE, MAP_SHARED, mem_cfg_fd, 0);
211         close(mem_cfg_fd);
212         if (rte_mem_cfg_addr == MAP_FAILED)
213                 rte_panic("Cannot mmap memory for rte_config\n");
214
215         rte_config.mem_config = rte_mem_cfg_addr;
216 }
217
218 /* Detect if we are a primary or a secondary process */
219 enum rte_proc_type_t
220 eal_proc_type_detect(void)
221 {
222         enum rte_proc_type_t ptype = RTE_PROC_PRIMARY;
223         const char *pathname = eal_runtime_config_path();
224
225         /* if we can open the file but not get a write-lock we are a secondary
226          * process. NOTE: if we get a file handle back, we keep that open
227          * and don't close it to prevent a race condition between multiple opens */
228         if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) &&
229                         (fcntl(mem_cfg_fd, F_SETLK, &wr_lock) < 0))
230                 ptype = RTE_PROC_SECONDARY;
231
232         RTE_LOG(INFO, EAL, "Auto-detected process type: %s\n",
233                         ptype == RTE_PROC_PRIMARY ? "PRIMARY" : "SECONDARY");
234
235         return ptype;
236 }
237
238 /* Sets up rte_config structure with the pointer to shared memory config.*/
239 static void
240 rte_config_init(void)
241 {
242         rte_config.process_type = internal_config.process_type;
243
244         switch (rte_config.process_type){
245         case RTE_PROC_PRIMARY:
246                 rte_eal_config_create();
247                 break;
248         case RTE_PROC_SECONDARY:
249                 rte_eal_config_attach();
250                 rte_eal_mcfg_wait_complete(rte_config.mem_config);
251                 break;
252         case RTE_PROC_AUTO:
253         case RTE_PROC_INVALID:
254                 rte_panic("Invalid process type\n");
255         }
256 }
257
258 /* display usage */
259 static void
260 eal_usage(const char *prgname)
261 {
262         printf("\nUsage: %s ", prgname);
263         eal_common_usage();
264         /* Allow the application to print its usage message too if hook is set */
265         if ( rte_application_usage_hook ) {
266                 printf("===== Application Usage =====\n\n");
267                 rte_application_usage_hook(prgname);
268         }
269 }
270
271 /* Set a per-application usage message */
272 rte_usage_hook_t
273 rte_set_application_usage_hook( rte_usage_hook_t usage_func )
274 {
275         rte_usage_hook_t        old_func;
276
277         /* Will be NULL on the first call to denote the last usage routine. */
278         old_func                                        = rte_application_usage_hook;
279         rte_application_usage_hook      = usage_func;
280
281         return old_func;
282 }
283
284 static inline size_t
285 eal_get_hugepage_mem_size(void)
286 {
287         uint64_t size = 0;
288         unsigned i, j;
289
290         for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
291                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
292                 if (hpi->hugedir != NULL) {
293                         for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
294                                 size += hpi->hugepage_sz * hpi->num_pages[j];
295                         }
296                 }
297         }
298
299         return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
300 }
301
302 /* Parse the arguments for --log-level only */
303 static void
304 eal_log_level_parse(int argc, char **argv)
305 {
306         int opt;
307         char **argvopt;
308         int option_index;
309         const int old_optind = optind;
310         const int old_optopt = optopt;
311         const int old_optreset = optreset;
312         char * const old_optarg = optarg;
313
314         argvopt = argv;
315         optind = 1;
316         optreset = 1;
317
318         while ((opt = getopt_long(argc, argvopt, eal_short_options,
319                                   eal_long_options, &option_index)) != EOF) {
320
321                 int ret;
322
323                 /* getopt is not happy, stop right now */
324                 if (opt == '?')
325                         break;
326
327                 ret = (opt == OPT_LOG_LEVEL_NUM) ?
328                         eal_parse_common_option(opt, optarg, &internal_config) : 0;
329
330                 /* common parser is not happy */
331                 if (ret < 0)
332                         break;
333         }
334
335         /* restore getopt lib */
336         optind = old_optind;
337         optopt = old_optopt;
338         optreset = old_optreset;
339         optarg = old_optarg;
340 }
341
342 /* Parse the argument given in the command line of the application */
343 static int
344 eal_parse_args(int argc, char **argv)
345 {
346         int opt, ret;
347         char **argvopt;
348         int option_index;
349         char *prgname = argv[0];
350         const int old_optind = optind;
351         const int old_optopt = optopt;
352         const int old_optreset = optreset;
353         char * const old_optarg = optarg;
354
355         argvopt = argv;
356         optind = 1;
357         optreset = 1;
358
359         while ((opt = getopt_long(argc, argvopt, eal_short_options,
360                                   eal_long_options, &option_index)) != EOF) {
361
362                 /* getopt is not happy, stop right now */
363                 if (opt == '?') {
364                         eal_usage(prgname);
365                         ret = -1;
366                         goto out;
367                 }
368
369                 ret = eal_parse_common_option(opt, optarg, &internal_config);
370                 /* common parser is not happy */
371                 if (ret < 0) {
372                         eal_usage(prgname);
373                         ret = -1;
374                         goto out;
375                 }
376                 /* common parser handled this option */
377                 if (ret == 0)
378                         continue;
379
380                 switch (opt) {
381                 case OPT_MBUF_POOL_OPS_NAME_NUM:
382                         internal_config.user_mbuf_pool_ops_name = optarg;
383                         break;
384                 case 'h':
385                         eal_usage(prgname);
386                         exit(EXIT_SUCCESS);
387                 default:
388                         if (opt < OPT_LONG_MIN_NUM && isprint(opt)) {
389                                 RTE_LOG(ERR, EAL, "Option %c is not supported "
390                                         "on FreeBSD\n", opt);
391                         } else if (opt >= OPT_LONG_MIN_NUM &&
392                                    opt < OPT_LONG_MAX_NUM) {
393                                 RTE_LOG(ERR, EAL, "Option %s is not supported "
394                                         "on FreeBSD\n",
395                                         eal_long_options[option_index].name);
396                         } else {
397                                 RTE_LOG(ERR, EAL, "Option %d is not supported "
398                                         "on FreeBSD\n", opt);
399                         }
400                         eal_usage(prgname);
401                         ret = -1;
402                         goto out;
403                 }
404         }
405
406         if (eal_adjust_config(&internal_config) != 0) {
407                 ret = -1;
408                 goto out;
409         }
410
411         /* sanity checks */
412         if (eal_check_common_options(&internal_config) != 0) {
413                 eal_usage(prgname);
414                 ret = -1;
415                 goto out;
416         }
417
418         if (optind >= 0)
419                 argv[optind-1] = prgname;
420         ret = optind-1;
421
422 out:
423         /* restore getopt lib */
424         optind = old_optind;
425         optopt = old_optopt;
426         optreset = old_optreset;
427         optarg = old_optarg;
428
429         return ret;
430 }
431
432 static void
433 eal_check_mem_on_local_socket(void)
434 {
435         const struct rte_memseg *ms;
436         int i, socket_id;
437
438         socket_id = rte_lcore_to_socket_id(rte_config.master_lcore);
439
440         ms = rte_eal_get_physmem_layout();
441
442         for (i = 0; i < RTE_MAX_MEMSEG; i++)
443                 if (ms[i].socket_id == socket_id &&
444                                 ms[i].len > 0)
445                         return;
446
447         RTE_LOG(WARNING, EAL, "WARNING: Master core has no "
448                         "memory on local socket!\n");
449 }
450
451 static int
452 sync_func(__attribute__((unused)) void *arg)
453 {
454         return 0;
455 }
456
457 inline static void
458 rte_eal_mcfg_complete(void)
459 {
460         /* ALL shared mem_config related INIT DONE */
461         if (rte_config.process_type == RTE_PROC_PRIMARY)
462                 rte_config.mem_config->magic = RTE_MAGIC;
463 }
464
465 /* return non-zero if hugepages are enabled. */
466 int rte_eal_has_hugepages(void)
467 {
468         return !internal_config.no_hugetlbfs;
469 }
470
471 /* Abstraction for port I/0 privilege */
472 int
473 rte_eal_iopl_init(void)
474 {
475         static int fd;
476
477         fd = open("/dev/io", O_RDWR);
478         if (fd < 0)
479                 return -1;
480         /* keep fd open for iopl */
481         return 0;
482 }
483
484 static void rte_eal_init_alert(const char *msg)
485 {
486         fprintf(stderr, "EAL: FATAL: %s\n", msg);
487         RTE_LOG(ERR, EAL, "%s\n", msg);
488 }
489
490 /* Launch threads, called at application init(). */
491 int
492 rte_eal_init(int argc, char **argv)
493 {
494         int i, fctret, ret;
495         pthread_t thread_id;
496         static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
497         char cpuset[RTE_CPU_AFFINITY_STR_LEN];
498         char thread_name[RTE_MAX_THREAD_NAME_LEN];
499
500         /* checks if the machine is adequate */
501         if (!rte_cpu_is_supported()) {
502                 rte_eal_init_alert("unsupported cpu type.");
503                 rte_errno = ENOTSUP;
504                 return -1;
505         }
506
507         if (!rte_atomic32_test_and_set(&run_once)) {
508                 rte_eal_init_alert("already called initialization.");
509                 rte_errno = EALREADY;
510                 return -1;
511         }
512
513         thread_id = pthread_self();
514
515         eal_reset_internal_config(&internal_config);
516
517         /* set log level as early as possible */
518         eal_log_level_parse(argc, argv);
519
520         if (rte_eal_cpu_init() < 0) {
521                 rte_eal_init_alert("Cannot detect lcores.");
522                 rte_errno = ENOTSUP;
523                 return -1;
524         }
525
526         fctret = eal_parse_args(argc, argv);
527         if (fctret < 0) {
528                 rte_eal_init_alert("Invalid 'command line' arguments.");
529                 rte_errno = EINVAL;
530                 rte_atomic32_clear(&run_once);
531                 return -1;
532         }
533
534         if (eal_plugins_init() < 0) {
535                 rte_eal_init_alert("Cannot init plugins\n");
536                 rte_errno = EINVAL;
537                 rte_atomic32_clear(&run_once);
538                 return -1;
539         }
540
541         if (eal_option_device_parse()) {
542                 rte_errno = ENODEV;
543                 rte_atomic32_clear(&run_once);
544                 return -1;
545         }
546
547         if (rte_bus_scan()) {
548                 rte_eal_init_alert("Cannot scan the buses for devices\n");
549                 rte_errno = ENODEV;
550                 rte_atomic32_clear(&run_once);
551                 return -1;
552         }
553
554         /* autodetect the iova mapping mode (default is iova_pa) */
555         rte_eal_get_configuration()->iova_mode = rte_bus_get_iommu_class();
556
557         if (internal_config.no_hugetlbfs == 0 &&
558                         internal_config.process_type != RTE_PROC_SECONDARY &&
559                         eal_hugepage_info_init() < 0) {
560                 rte_eal_init_alert("Cannot get hugepage information.");
561                 rte_errno = EACCES;
562                 rte_atomic32_clear(&run_once);
563                 return -1;
564         }
565
566         if (internal_config.memory == 0 && internal_config.force_sockets == 0) {
567                 if (internal_config.no_hugetlbfs)
568                         internal_config.memory = MEMSIZE_IF_NO_HUGE_PAGE;
569                 else
570                         internal_config.memory = eal_get_hugepage_mem_size();
571         }
572
573         if (internal_config.vmware_tsc_map == 1) {
574 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
575                 rte_cycles_vmware_tsc_map = 1;
576                 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
577                                 "you must have monitor_control.pseudo_perfctr = TRUE\n");
578 #else
579                 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
580                                 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
581 #endif
582         }
583
584         rte_srand(rte_rdtsc());
585
586         rte_config_init();
587
588         if (rte_mp_channel_init() < 0) {
589                 rte_eal_init_alert("failed to init mp channel\n");
590                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
591                         rte_errno = EFAULT;
592                         return -1;
593                 }
594         }
595
596         if (rte_eal_memory_init() < 0) {
597                 rte_eal_init_alert("Cannot init memory\n");
598                 rte_errno = ENOMEM;
599                 return -1;
600         }
601
602         if (rte_eal_memzone_init() < 0) {
603                 rte_eal_init_alert("Cannot init memzone\n");
604                 rte_errno = ENODEV;
605                 return -1;
606         }
607
608         if (rte_eal_tailqs_init() < 0) {
609                 rte_eal_init_alert("Cannot init tail queues for objects\n");
610                 rte_errno = EFAULT;
611                 return -1;
612         }
613
614         if (rte_eal_alarm_init() < 0) {
615                 rte_eal_init_alert("Cannot init interrupt-handling thread\n");
616                 /* rte_eal_alarm_init sets rte_errno on failure. */
617                 return -1;
618         }
619
620         if (rte_eal_intr_init() < 0) {
621                 rte_eal_init_alert("Cannot init interrupt-handling thread\n");
622                 return -1;
623         }
624
625         if (rte_eal_timer_init() < 0) {
626                 rte_eal_init_alert("Cannot init HPET or TSC timers\n");
627                 rte_errno = ENOTSUP;
628                 return -1;
629         }
630
631         eal_check_mem_on_local_socket();
632
633         eal_thread_init_master(rte_config.master_lcore);
634
635         ret = eal_thread_dump_affinity(cpuset, RTE_CPU_AFFINITY_STR_LEN);
636
637         RTE_LOG(DEBUG, EAL, "Master lcore %u is ready (tid=%p;cpuset=[%s%s])\n",
638                 rte_config.master_lcore, thread_id, cpuset,
639                 ret == 0 ? "" : "...");
640
641         RTE_LCORE_FOREACH_SLAVE(i) {
642
643                 /*
644                  * create communication pipes between master thread
645                  * and children
646                  */
647                 if (pipe(lcore_config[i].pipe_master2slave) < 0)
648                         rte_panic("Cannot create pipe\n");
649                 if (pipe(lcore_config[i].pipe_slave2master) < 0)
650                         rte_panic("Cannot create pipe\n");
651
652                 lcore_config[i].state = WAIT;
653
654                 /* create a thread for each lcore */
655                 ret = pthread_create(&lcore_config[i].thread_id, NULL,
656                                      eal_thread_loop, NULL);
657                 if (ret != 0)
658                         rte_panic("Cannot create thread\n");
659
660                 /* Set thread_name for aid in debugging. */
661                 snprintf(thread_name, RTE_MAX_THREAD_NAME_LEN,
662                                 "lcore-slave-%d", i);
663                 rte_thread_setname(lcore_config[i].thread_id, thread_name);
664         }
665
666         /*
667          * Launch a dummy function on all slave lcores, so that master lcore
668          * knows they are all ready when this function returns.
669          */
670         rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
671         rte_eal_mp_wait_lcore();
672
673         /* initialize services so vdevs register service during bus_probe. */
674         ret = rte_service_init();
675         if (ret) {
676                 rte_eal_init_alert("rte_service_init() failed\n");
677                 rte_errno = ENOEXEC;
678                 return -1;
679         }
680
681         /* Probe all the buses and devices/drivers on them */
682         if (rte_bus_probe()) {
683                 rte_eal_init_alert("Cannot probe devices\n");
684                 rte_errno = ENOTSUP;
685                 return -1;
686         }
687
688         /* initialize default service/lcore mappings and start running. Ignore
689          * -ENOTSUP, as it indicates no service coremask passed to EAL.
690          */
691         ret = rte_service_start_with_defaults();
692         if (ret < 0 && ret != -ENOTSUP) {
693                 rte_errno = ENOEXEC;
694                 return -1;
695         }
696
697         rte_eal_mcfg_complete();
698
699         return fctret;
700 }
701
702 int __rte_experimental
703 rte_eal_cleanup(void)
704 {
705         rte_service_finalize();
706         return 0;
707 }
708
709 /* get core role */
710 enum rte_lcore_role_t
711 rte_eal_lcore_role(unsigned lcore_id)
712 {
713         return rte_config.lcore_role[lcore_id];
714 }
715
716 enum rte_proc_type_t
717 rte_eal_process_type(void)
718 {
719         return rte_config.process_type;
720 }
721
722 int rte_eal_has_pci(void)
723 {
724         return !internal_config.no_pci;
725 }
726
727 int rte_eal_create_uio_dev(void)
728 {
729         return internal_config.create_uio_dev;
730 }
731
732 enum rte_intr_mode
733 rte_eal_vfio_intr_mode(void)
734 {
735         return RTE_INTR_MODE_NONE;
736 }
737
738 /* dummy forward declaration. */
739 struct vfio_device_info;
740
741 /* dummy prototypes. */
742 int rte_vfio_setup_device(const char *sysfs_base, const char *dev_addr,
743                 int *vfio_dev_fd, struct vfio_device_info *device_info);
744 int rte_vfio_release_device(const char *sysfs_base, const char *dev_addr, int fd);
745 int rte_vfio_enable(const char *modname);
746 int rte_vfio_is_enabled(const char *modname);
747 int rte_vfio_noiommu_is_enabled(void);
748 int rte_vfio_clear_group(int vfio_group_fd);
749
750 int rte_vfio_setup_device(__rte_unused const char *sysfs_base,
751                       __rte_unused const char *dev_addr,
752                       __rte_unused int *vfio_dev_fd,
753                       __rte_unused struct vfio_device_info *device_info)
754 {
755         return -1;
756 }
757
758 int rte_vfio_release_device(__rte_unused const char *sysfs_base,
759                         __rte_unused const char *dev_addr,
760                         __rte_unused int fd)
761 {
762         return -1;
763 }
764
765 int rte_vfio_enable(__rte_unused const char *modname)
766 {
767         return -1;
768 }
769
770 int rte_vfio_is_enabled(__rte_unused const char *modname)
771 {
772         return 0;
773 }
774
775 int rte_vfio_noiommu_is_enabled(void)
776 {
777         return 0;
778 }
779
780 int rte_vfio_clear_group(__rte_unused int vfio_group_fd)
781 {
782         return 0;
783 }