1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
15 #include <sys/types.h>
21 #include <rte_lcore.h>
22 #include <rte_tailq.h>
23 #include <rte_version.h>
24 #include <rte_devargs.h>
25 #include <rte_memcpy.h>
27 #include "eal_internal_cfg.h"
28 #include "eal_options.h"
29 #include "eal_filesystem.h"
31 #define BITS_PER_HEX 4
32 #define LCORE_OPT_LST 1
33 #define LCORE_OPT_MSK 2
34 #define LCORE_OPT_MAP 3
38 "b:" /* pci-blacklist */
40 "s:" /* service coremask */
44 "S:" /* service corelist */
45 "m:" /* memory size */
46 "n:" /* memory channels */
47 "r:" /* memory ranks */
49 "w:" /* pci-whitelist */
53 eal_long_options[] = {
54 {OPT_BASE_VIRTADDR, 1, NULL, OPT_BASE_VIRTADDR_NUM },
55 {OPT_CREATE_UIO_DEV, 0, NULL, OPT_CREATE_UIO_DEV_NUM },
56 {OPT_FILE_PREFIX, 1, NULL, OPT_FILE_PREFIX_NUM },
57 {OPT_HELP, 0, NULL, OPT_HELP_NUM },
58 {OPT_HUGE_DIR, 1, NULL, OPT_HUGE_DIR_NUM },
59 {OPT_HUGE_UNLINK, 0, NULL, OPT_HUGE_UNLINK_NUM },
60 {OPT_LCORES, 1, NULL, OPT_LCORES_NUM },
61 {OPT_LOG_LEVEL, 1, NULL, OPT_LOG_LEVEL_NUM },
62 {OPT_MASTER_LCORE, 1, NULL, OPT_MASTER_LCORE_NUM },
63 {OPT_MBUF_POOL_OPS_NAME, 1, NULL, OPT_MBUF_POOL_OPS_NAME_NUM},
64 {OPT_NO_HPET, 0, NULL, OPT_NO_HPET_NUM },
65 {OPT_NO_HUGE, 0, NULL, OPT_NO_HUGE_NUM },
66 {OPT_NO_PCI, 0, NULL, OPT_NO_PCI_NUM },
67 {OPT_NO_SHCONF, 0, NULL, OPT_NO_SHCONF_NUM },
68 {OPT_PCI_BLACKLIST, 1, NULL, OPT_PCI_BLACKLIST_NUM },
69 {OPT_PCI_WHITELIST, 1, NULL, OPT_PCI_WHITELIST_NUM },
70 {OPT_PROC_TYPE, 1, NULL, OPT_PROC_TYPE_NUM },
71 {OPT_SOCKET_MEM, 1, NULL, OPT_SOCKET_MEM_NUM },
72 {OPT_SYSLOG, 1, NULL, OPT_SYSLOG_NUM },
73 {OPT_VDEV, 1, NULL, OPT_VDEV_NUM },
74 {OPT_VFIO_INTR, 1, NULL, OPT_VFIO_INTR_NUM },
75 {OPT_VMWARE_TSC_MAP, 0, NULL, OPT_VMWARE_TSC_MAP_NUM },
79 TAILQ_HEAD(shared_driver_list, shared_driver);
81 /* Definition for shared object drivers. */
82 struct shared_driver {
83 TAILQ_ENTRY(shared_driver) next;
89 /* List of external loadable drivers */
90 static struct shared_driver_list solib_list =
91 TAILQ_HEAD_INITIALIZER(solib_list);
93 /* Default path of external loadable drivers */
94 static const char *default_solib_dir = RTE_EAL_PMD_PATH;
97 * Stringified version of solib path used by dpdk-pmdinfo.py
98 * Note: PLEASE DO NOT ALTER THIS without making a corresponding
99 * change to usertools/dpdk-pmdinfo.py
101 static const char dpdk_solib_path[] __attribute__((used)) =
102 "DPDK_PLUGIN_PATH=" RTE_EAL_PMD_PATH;
104 TAILQ_HEAD(device_option_list, device_option);
106 struct device_option {
107 TAILQ_ENTRY(device_option) next;
109 enum rte_devtype type;
113 static struct device_option_list devopt_list =
114 TAILQ_HEAD_INITIALIZER(devopt_list);
116 static int master_lcore_parsed;
117 static int mem_parsed;
118 static int core_parsed;
121 eal_option_device_add(enum rte_devtype type, const char *optarg)
123 struct device_option *devopt;
127 optlen = strlen(optarg) + 1;
128 devopt = calloc(1, sizeof(*devopt) + optlen);
129 if (devopt == NULL) {
130 RTE_LOG(ERR, EAL, "Unable to allocate device option\n");
135 ret = snprintf(devopt->arg, optlen, "%s", optarg);
137 RTE_LOG(ERR, EAL, "Unable to copy device option\n");
141 TAILQ_INSERT_TAIL(&devopt_list, devopt, next);
146 eal_option_device_parse(void)
148 struct device_option *devopt;
152 TAILQ_FOREACH_SAFE(devopt, &devopt_list, next, tmp) {
154 ret = rte_eal_devargs_add(devopt->type, devopt->arg);
156 RTE_LOG(ERR, EAL, "Unable to parse device '%s'\n",
159 TAILQ_REMOVE(&devopt_list, devopt, next);
166 eal_reset_internal_config(struct internal_config *internal_cfg)
170 internal_cfg->memory = 0;
171 internal_cfg->force_nrank = 0;
172 internal_cfg->force_nchannel = 0;
173 internal_cfg->hugefile_prefix = HUGEFILE_PREFIX_DEFAULT;
174 internal_cfg->hugepage_dir = NULL;
175 internal_cfg->force_sockets = 0;
176 /* zero out the NUMA config */
177 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
178 internal_cfg->socket_mem[i] = 0;
179 /* zero out hugedir descriptors */
180 for (i = 0; i < MAX_HUGEPAGE_SIZES; i++)
181 internal_cfg->hugepage_info[i].lock_descriptor = -1;
182 internal_cfg->base_virtaddr = 0;
184 internal_cfg->syslog_facility = LOG_DAEMON;
186 /* if set to NONE, interrupt mode is determined automatically */
187 internal_cfg->vfio_intr_mode = RTE_INTR_MODE_NONE;
189 #ifdef RTE_LIBEAL_USE_HPET
190 internal_cfg->no_hpet = 0;
192 internal_cfg->no_hpet = 1;
194 internal_cfg->vmware_tsc_map = 0;
195 internal_cfg->create_uio_dev = 0;
196 internal_cfg->user_mbuf_pool_ops_name = NULL;
197 internal_cfg->init_complete = 0;
201 eal_plugin_add(const char *path)
203 struct shared_driver *solib;
205 solib = malloc(sizeof(*solib));
207 RTE_LOG(ERR, EAL, "malloc(solib) failed\n");
210 memset(solib, 0, sizeof(*solib));
211 strncpy(solib->name, path, PATH_MAX-1);
212 solib->name[PATH_MAX-1] = 0;
213 TAILQ_INSERT_TAIL(&solib_list, solib, next);
219 eal_plugindir_init(const char *path)
222 struct dirent *dent = NULL;
223 char sopath[PATH_MAX];
225 if (path == NULL || *path == '\0')
230 RTE_LOG(ERR, EAL, "failed to open directory %s: %s\n",
231 path, strerror(errno));
235 while ((dent = readdir(d)) != NULL) {
238 snprintf(sopath, PATH_MAX-1, "%s/%s", path, dent->d_name);
239 sopath[PATH_MAX-1] = 0;
241 if (!(stat(sopath, &sb) == 0 && S_ISREG(sb.st_mode)))
244 if (eal_plugin_add(sopath) == -1)
249 /* XXX this ignores failures from readdir() itself */
250 return (dent == NULL) ? 0 : -1;
254 eal_plugins_init(void)
256 struct shared_driver *solib = NULL;
259 if (*default_solib_dir != '\0' && stat(default_solib_dir, &sb) == 0 &&
261 eal_plugin_add(default_solib_dir);
263 TAILQ_FOREACH(solib, &solib_list, next) {
265 if (stat(solib->name, &sb) == 0 && S_ISDIR(sb.st_mode)) {
266 if (eal_plugindir_init(solib->name) == -1) {
268 "Cannot init plugin directory %s\n",
273 RTE_LOG(DEBUG, EAL, "open shared lib %s\n",
275 solib->lib_handle = dlopen(solib->name, RTLD_NOW);
276 if (solib->lib_handle == NULL) {
277 RTE_LOG(ERR, EAL, "%s\n", dlerror());
287 * Parse the coremask given as argument (hexadecimal string) and fill
288 * the global configuration (core role and core count) with the parsed
291 static int xdigit2val(unsigned char c)
305 eal_parse_service_coremask(const char *coremask)
307 struct rte_config *cfg = rte_eal_get_configuration();
309 unsigned int count = 0;
313 if (coremask == NULL)
315 /* Remove all blank characters ahead and after .
316 * Remove 0x/0X if exists.
318 while (isblank(*coremask))
320 if (coremask[0] == '0' && ((coremask[1] == 'x')
321 || (coremask[1] == 'X')))
323 i = strlen(coremask);
324 while ((i > 0) && isblank(coremask[i - 1]))
330 for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
332 if (isxdigit(c) == 0) {
333 /* invalid characters */
337 for (j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE;
339 if ((1 << j) & val) {
340 /* handle master lcore already parsed */
341 uint32_t lcore = idx;
342 if (master_lcore_parsed &&
343 cfg->master_lcore == lcore) {
345 "Error: lcore %u is master lcore, cannot use as service core\n",
350 if (!lcore_config[idx].detected) {
352 "lcore %u unavailable\n", idx);
355 lcore_config[idx].core_role = ROLE_SERVICE;
362 if (coremask[i] != '0')
365 for (; idx < RTE_MAX_LCORE; idx++)
366 lcore_config[idx].core_index = -1;
371 cfg->service_lcore_count = count;
376 eal_parse_coremask(const char *coremask)
378 struct rte_config *cfg = rte_eal_get_configuration();
384 if (coremask == NULL)
386 /* Remove all blank characters ahead and after .
387 * Remove 0x/0X if exists.
389 while (isblank(*coremask))
391 if (coremask[0] == '0' && ((coremask[1] == 'x')
392 || (coremask[1] == 'X')))
394 i = strlen(coremask);
395 while ((i > 0) && isblank(coremask[i - 1]))
400 for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
402 if (isxdigit(c) == 0) {
403 /* invalid characters */
407 for (j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE; j++, idx++)
409 if ((1 << j) & val) {
410 if (!lcore_config[idx].detected) {
411 RTE_LOG(ERR, EAL, "lcore %u "
412 "unavailable\n", idx);
415 cfg->lcore_role[idx] = ROLE_RTE;
416 lcore_config[idx].core_index = count;
419 cfg->lcore_role[idx] = ROLE_OFF;
420 lcore_config[idx].core_index = -1;
425 if (coremask[i] != '0')
427 for (; idx < RTE_MAX_LCORE; idx++) {
428 cfg->lcore_role[idx] = ROLE_OFF;
429 lcore_config[idx].core_index = -1;
433 /* Update the count of enabled logical cores of the EAL configuration */
434 cfg->lcore_count = count;
439 eal_parse_service_corelist(const char *corelist)
441 struct rte_config *cfg = rte_eal_get_configuration();
447 if (corelist == NULL)
450 /* Remove all blank characters ahead and after */
451 while (isblank(*corelist))
453 i = strlen(corelist);
454 while ((i > 0) && isblank(corelist[i - 1]))
457 /* Get list of cores */
460 while (isblank(*corelist))
462 if (*corelist == '\0')
465 idx = strtoul(corelist, &end, 10);
466 if (errno || end == NULL)
468 while (isblank(*end))
472 } else if ((*end == ',') || (*end == '\0')) {
474 if (min == RTE_MAX_LCORE)
476 for (idx = min; idx <= max; idx++) {
477 if (cfg->lcore_role[idx] != ROLE_SERVICE) {
478 /* handle master lcore already parsed */
479 uint32_t lcore = idx;
480 if (cfg->master_lcore == lcore &&
481 master_lcore_parsed) {
483 "Error: lcore %u is master lcore, cannot use as service core\n",
487 lcore_config[idx].core_role =
496 } while (*end != '\0');
505 eal_parse_corelist(const char *corelist)
507 struct rte_config *cfg = rte_eal_get_configuration();
513 if (corelist == NULL)
516 /* Remove all blank characters ahead and after */
517 while (isblank(*corelist))
519 i = strlen(corelist);
520 while ((i > 0) && isblank(corelist[i - 1]))
524 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
525 cfg->lcore_role[idx] = ROLE_OFF;
526 lcore_config[idx].core_index = -1;
529 /* Get list of cores */
532 while (isblank(*corelist))
534 if (*corelist == '\0')
537 idx = strtoul(corelist, &end, 10);
538 if (errno || end == NULL)
540 while (isblank(*end))
544 } else if ((*end == ',') || (*end == '\0')) {
546 if (min == RTE_MAX_LCORE)
548 for (idx = min; idx <= max; idx++) {
549 if (cfg->lcore_role[idx] != ROLE_RTE) {
550 cfg->lcore_role[idx] = ROLE_RTE;
551 lcore_config[idx].core_index = count;
559 } while (*end != '\0');
564 /* Update the count of enabled logical cores of the EAL configuration */
565 cfg->lcore_count = count;
570 /* Changes the lcore id of the master thread */
572 eal_parse_master_lcore(const char *arg)
575 struct rte_config *cfg = rte_eal_get_configuration();
578 cfg->master_lcore = (uint32_t) strtol(arg, &parsing_end, 0);
579 if (errno || parsing_end[0] != 0)
581 if (cfg->master_lcore >= RTE_MAX_LCORE)
583 master_lcore_parsed = 1;
585 /* ensure master core is not used as service core */
586 if (lcore_config[cfg->master_lcore].core_role == ROLE_SERVICE) {
587 RTE_LOG(ERR, EAL, "Error: Master lcore is used as a service core.\n");
595 * Parse elem, the elem could be single number/range or '(' ')' group
596 * 1) A single number elem, it's just a simple digit. e.g. 9
597 * 2) A single range elem, two digits with a '-' between. e.g. 2-6
598 * 3) A group elem, combines multiple 1) or 2) with '( )'. e.g (0,2-4,6)
599 * Within group elem, '-' used for a range separator;
600 * ',' used for a single number.
603 eal_parse_set(const char *input, uint16_t set[], unsigned num)
606 const char *str = input;
610 memset(set, 0, num * sizeof(uint16_t));
612 while (isblank(*str))
615 /* only digit or left bracket is qualify for start point */
616 if ((!isdigit(*str) && *str != '(') || *str == '\0')
619 /* process single number or single range of number */
622 idx = strtoul(str, &end, 10);
623 if (errno || end == NULL || idx >= num)
626 while (isblank(*end))
632 /* process single <number>-<number> */
634 while (isblank(*end))
640 idx = strtoul(end, &end, 10);
641 if (errno || end == NULL || idx >= num)
644 while (isblank(*end))
646 if (*end != ',' && *end != '\0')
650 if (*end != ',' && *end != '\0' &&
654 for (idx = RTE_MIN(min, max);
655 idx <= RTE_MAX(min, max); idx++)
662 /* process set within bracket */
664 while (isblank(*str))
672 /* go ahead to the first digit */
673 while (isblank(*str))
678 /* get the digit value */
680 idx = strtoul(str, &end, 10);
681 if (errno || end == NULL || idx >= num)
684 /* go ahead to separator '-',',' and ')' */
685 while (isblank(*end))
688 if (min == RTE_MAX_LCORE)
690 else /* avoid continuous '-' */
692 } else if ((*end == ',') || (*end == ')')) {
694 if (min == RTE_MAX_LCORE)
696 for (idx = RTE_MIN(min, max);
697 idx <= RTE_MAX(min, max); idx++)
705 } while (*end != '\0' && *end != ')');
708 * to avoid failure that tail blank makes end character check fail
709 * in eal_parse_lcores( )
711 while (isblank(*str))
717 /* convert from set array to cpuset bitmap */
719 convert_to_cpuset(rte_cpuset_t *cpusetp,
720 uint16_t *set, unsigned num)
726 for (idx = 0; idx < num; idx++) {
730 if (!lcore_config[idx].detected) {
731 RTE_LOG(ERR, EAL, "core %u "
732 "unavailable\n", idx);
736 CPU_SET(idx, cpusetp);
743 * The format pattern: --lcores='<lcores[@cpus]>[<,lcores[@cpus]>...]'
744 * lcores, cpus could be a single digit/range or a group.
745 * '(' and ')' are necessary if it's a group.
746 * If not supply '@cpus', the value of cpus uses the same as lcores.
747 * e.g. '1,2@(5-7),(3-5)@(0,2),(0,6),7-8' means start 9 EAL thread as below
748 * lcore 0 runs on cpuset 0x41 (cpu 0,6)
749 * lcore 1 runs on cpuset 0x2 (cpu 1)
750 * lcore 2 runs on cpuset 0xe0 (cpu 5,6,7)
751 * lcore 3,4,5 runs on cpuset 0x5 (cpu 0,2)
752 * lcore 6 runs on cpuset 0x41 (cpu 0,6)
753 * lcore 7 runs on cpuset 0x80 (cpu 7)
754 * lcore 8 runs on cpuset 0x100 (cpu 8)
757 eal_parse_lcores(const char *lcores)
759 struct rte_config *cfg = rte_eal_get_configuration();
760 static uint16_t set[RTE_MAX_LCORE];
763 const char *lcore_start = NULL;
764 const char *end = NULL;
773 /* Remove all blank characters ahead and after */
774 while (isblank(*lcores))
779 /* Reset lcore config */
780 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
781 cfg->lcore_role[idx] = ROLE_OFF;
782 lcore_config[idx].core_index = -1;
783 CPU_ZERO(&lcore_config[idx].cpuset);
786 /* Get list of cores */
788 while (isblank(*lcores))
795 /* record lcore_set start point */
796 lcore_start = lcores;
798 /* go across a complete bracket */
799 if (*lcore_start == '(') {
800 lcores += strcspn(lcores, ")");
801 if (*lcores++ == '\0')
805 /* scan the separator '@', ','(next) or '\0'(finish) */
806 lcores += strcspn(lcores, "@,");
808 if (*lcores == '@') {
809 /* explicit assign cpu_set */
810 offset = eal_parse_set(lcores + 1, set, RTE_DIM(set));
814 /* prepare cpu_set and update the end cursor */
815 if (0 > convert_to_cpuset(&cpuset,
818 end = lcores + 1 + offset;
819 } else { /* ',' or '\0' */
820 /* haven't given cpu_set, current loop done */
823 /* go back to check <number>-<number> */
824 offset = strcspn(lcore_start, "(-");
825 if (offset < (end - lcore_start) &&
826 *(lcore_start + offset) != '(')
830 if (*end != ',' && *end != '\0')
833 /* parse lcore_set from start point */
834 if (0 > eal_parse_set(lcore_start, set, RTE_DIM(set)))
837 /* without '@', by default using lcore_set as cpu_set */
838 if (*lcores != '@' &&
839 0 > convert_to_cpuset(&cpuset, set, RTE_DIM(set)))
842 /* start to update lcore_set */
843 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
847 if (cfg->lcore_role[idx] != ROLE_RTE) {
848 lcore_config[idx].core_index = count;
849 cfg->lcore_role[idx] = ROLE_RTE;
855 CPU_SET(idx, &cpuset);
857 rte_memcpy(&lcore_config[idx].cpuset, &cpuset,
858 sizeof(rte_cpuset_t));
862 } while (*end != '\0');
867 cfg->lcore_count = count;
876 eal_parse_syslog(const char *facility, struct internal_config *conf)
883 { "auth", LOG_AUTH },
884 { "cron", LOG_CRON },
885 { "daemon", LOG_DAEMON },
887 { "kern", LOG_KERN },
889 { "mail", LOG_MAIL },
890 { "news", LOG_NEWS },
891 { "syslog", LOG_SYSLOG },
892 { "user", LOG_USER },
893 { "uucp", LOG_UUCP },
894 { "local0", LOG_LOCAL0 },
895 { "local1", LOG_LOCAL1 },
896 { "local2", LOG_LOCAL2 },
897 { "local3", LOG_LOCAL3 },
898 { "local4", LOG_LOCAL4 },
899 { "local5", LOG_LOCAL5 },
900 { "local6", LOG_LOCAL6 },
901 { "local7", LOG_LOCAL7 },
905 for (i = 0; map[i].name; i++) {
906 if (!strcmp(facility, map[i].name)) {
907 conf->syslog_facility = map[i].value;
915 eal_parse_log_level(const char *arg)
917 char *end, *str, *type, *level;
924 if (strchr(str, ',') == NULL) {
928 type = strsep(&str, ",");
929 level = strsep(&str, ",");
933 tmp = strtoul(level, &end, 0);
935 /* check for errors */
936 if ((errno != 0) || (level[0] == '\0') ||
937 end == NULL || (*end != '\0'))
940 /* log_level is a uint32_t */
941 if (tmp >= UINT32_MAX)
945 rte_log_set_global_level(tmp);
946 } else if (rte_log_set_level_regexp(type, tmp) < 0) {
947 printf("cannot set log level %s,%lu\n",
960 static enum rte_proc_type_t
961 eal_parse_proc_type(const char *arg)
963 if (strncasecmp(arg, "primary", sizeof("primary")) == 0)
964 return RTE_PROC_PRIMARY;
965 if (strncasecmp(arg, "secondary", sizeof("secondary")) == 0)
966 return RTE_PROC_SECONDARY;
967 if (strncasecmp(arg, "auto", sizeof("auto")) == 0)
968 return RTE_PROC_AUTO;
970 return RTE_PROC_INVALID;
974 eal_parse_common_option(int opt, const char *optarg,
975 struct internal_config *conf)
985 if (eal_option_device_add(RTE_DEVTYPE_BLACKLISTED_PCI,
995 if (eal_option_device_add(RTE_DEVTYPE_WHITELISTED_PCI,
1003 if (eal_parse_coremask(optarg) < 0) {
1004 RTE_LOG(ERR, EAL, "invalid coremask\n");
1009 RTE_LOG(ERR, EAL, "Option -c is ignored, because (%s) is set!\n",
1010 (core_parsed == LCORE_OPT_LST) ? "-l" :
1011 (core_parsed == LCORE_OPT_MAP) ? "--lcore" :
1016 core_parsed = LCORE_OPT_MSK;
1020 if (eal_parse_corelist(optarg) < 0) {
1021 RTE_LOG(ERR, EAL, "invalid core list\n");
1026 RTE_LOG(ERR, EAL, "Option -l is ignored, because (%s) is set!\n",
1027 (core_parsed == LCORE_OPT_MSK) ? "-c" :
1028 (core_parsed == LCORE_OPT_MAP) ? "--lcore" :
1033 core_parsed = LCORE_OPT_LST;
1035 /* service coremask */
1037 if (eal_parse_service_coremask(optarg) < 0) {
1038 RTE_LOG(ERR, EAL, "invalid service coremask\n");
1042 /* service corelist */
1044 if (eal_parse_service_corelist(optarg) < 0) {
1045 RTE_LOG(ERR, EAL, "invalid service core list\n");
1049 /* size of memory */
1051 conf->memory = atoi(optarg);
1052 conf->memory *= 1024ULL;
1053 conf->memory *= 1024ULL;
1056 /* force number of channels */
1058 conf->force_nchannel = atoi(optarg);
1059 if (conf->force_nchannel == 0) {
1060 RTE_LOG(ERR, EAL, "invalid channel number\n");
1064 /* force number of ranks */
1066 conf->force_nrank = atoi(optarg);
1067 if (conf->force_nrank == 0 ||
1068 conf->force_nrank > 16) {
1069 RTE_LOG(ERR, EAL, "invalid rank number\n");
1073 /* force loading of external driver */
1075 if (eal_plugin_add(optarg) == -1)
1079 /* since message is explicitly requested by user, we
1080 * write message at highest log level so it can always
1082 * even if info or warning messages are disabled */
1083 RTE_LOG(CRIT, EAL, "RTE Version: '%s'\n", rte_version());
1087 case OPT_HUGE_UNLINK_NUM:
1088 conf->hugepage_unlink = 1;
1091 case OPT_NO_HUGE_NUM:
1092 conf->no_hugetlbfs = 1;
1095 case OPT_NO_PCI_NUM:
1099 case OPT_NO_HPET_NUM:
1103 case OPT_VMWARE_TSC_MAP_NUM:
1104 conf->vmware_tsc_map = 1;
1107 case OPT_NO_SHCONF_NUM:
1108 conf->no_shconf = 1;
1111 case OPT_PROC_TYPE_NUM:
1112 conf->process_type = eal_parse_proc_type(optarg);
1115 case OPT_MASTER_LCORE_NUM:
1116 if (eal_parse_master_lcore(optarg) < 0) {
1117 RTE_LOG(ERR, EAL, "invalid parameter for --"
1118 OPT_MASTER_LCORE "\n");
1124 if (eal_option_device_add(RTE_DEVTYPE_VIRTUAL,
1130 case OPT_SYSLOG_NUM:
1131 if (eal_parse_syslog(optarg, conf) < 0) {
1132 RTE_LOG(ERR, EAL, "invalid parameters for --"
1138 case OPT_LOG_LEVEL_NUM: {
1139 if (eal_parse_log_level(optarg) < 0) {
1141 "invalid parameters for --"
1142 OPT_LOG_LEVEL "\n");
1147 case OPT_LCORES_NUM:
1148 if (eal_parse_lcores(optarg) < 0) {
1149 RTE_LOG(ERR, EAL, "invalid parameter for --"
1155 RTE_LOG(ERR, EAL, "Option --lcore is ignored, because (%s) is set!\n",
1156 (core_parsed == LCORE_OPT_LST) ? "-l" :
1157 (core_parsed == LCORE_OPT_MSK) ? "-c" :
1162 core_parsed = LCORE_OPT_MAP;
1165 /* don't know what to do, leave this to caller */
1173 RTE_LOG(ERR, EAL, "Options blacklist (-b) and whitelist (-w) "
1174 "cannot be used at the same time\n");
1179 eal_auto_detect_cores(struct rte_config *cfg)
1181 unsigned int lcore_id;
1182 unsigned int removed = 0;
1183 rte_cpuset_t affinity_set;
1184 pthread_t tid = pthread_self();
1186 if (pthread_getaffinity_np(tid, sizeof(rte_cpuset_t),
1188 CPU_ZERO(&affinity_set);
1190 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1191 if (cfg->lcore_role[lcore_id] == ROLE_RTE &&
1192 !CPU_ISSET(lcore_id, &affinity_set)) {
1193 cfg->lcore_role[lcore_id] = ROLE_OFF;
1198 cfg->lcore_count -= removed;
1202 eal_adjust_config(struct internal_config *internal_cfg)
1205 struct rte_config *cfg = rte_eal_get_configuration();
1208 eal_auto_detect_cores(cfg);
1210 if (internal_config.process_type == RTE_PROC_AUTO)
1211 internal_config.process_type = eal_proc_type_detect();
1213 /* default master lcore is the first one */
1214 if (!master_lcore_parsed) {
1215 cfg->master_lcore = rte_get_next_lcore(-1, 0, 0);
1216 lcore_config[cfg->master_lcore].core_role = ROLE_RTE;
1219 /* if no memory amounts were requested, this will result in 0 and
1220 * will be overridden later, right after eal_hugepage_info_init() */
1221 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
1222 internal_cfg->memory += internal_cfg->socket_mem[i];
1228 eal_check_common_options(struct internal_config *internal_cfg)
1230 struct rte_config *cfg = rte_eal_get_configuration();
1232 if (cfg->lcore_role[cfg->master_lcore] != ROLE_RTE) {
1233 RTE_LOG(ERR, EAL, "Master lcore is not enabled for DPDK\n");
1237 if (internal_cfg->process_type == RTE_PROC_INVALID) {
1238 RTE_LOG(ERR, EAL, "Invalid process type specified\n");
1241 if (index(internal_cfg->hugefile_prefix, '%') != NULL) {
1242 RTE_LOG(ERR, EAL, "Invalid char, '%%', in --"OPT_FILE_PREFIX" "
1246 if (mem_parsed && internal_cfg->force_sockets == 1) {
1247 RTE_LOG(ERR, EAL, "Options -m and --"OPT_SOCKET_MEM" cannot "
1248 "be specified at the same time\n");
1251 if (internal_cfg->no_hugetlbfs && internal_cfg->force_sockets == 1) {
1252 RTE_LOG(ERR, EAL, "Option --"OPT_SOCKET_MEM" cannot "
1253 "be specified together with --"OPT_NO_HUGE"\n");
1257 if (internal_cfg->no_hugetlbfs && internal_cfg->hugepage_unlink) {
1258 RTE_LOG(ERR, EAL, "Option --"OPT_HUGE_UNLINK" cannot "
1259 "be specified together with --"OPT_NO_HUGE"\n");
1267 eal_common_usage(void)
1269 printf("[options]\n\n"
1270 "EAL common options:\n"
1271 " -c COREMASK Hexadecimal bitmask of cores to run on\n"
1272 " -l CORELIST List of cores to run on\n"
1273 " The argument format is <c1>[-c2][,c3[-c4],...]\n"
1274 " where c1, c2, etc are core indexes between 0 and %d\n"
1275 " --"OPT_LCORES" COREMAP Map lcore set to physical cpu set\n"
1276 " The argument format is\n"
1277 " '<lcores[@cpus]>[<,lcores[@cpus]>...]'\n"
1278 " lcores and cpus list are grouped by '(' and ')'\n"
1279 " Within the group, '-' is used for range separator,\n"
1280 " ',' is used for single number separator.\n"
1281 " '( )' can be omitted for single element group,\n"
1282 " '@' can be omitted if cpus and lcores have the same value\n"
1283 " -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores\n"
1284 " --"OPT_MASTER_LCORE" ID Core ID that is used as master\n"
1285 " --"OPT_MBUF_POOL_OPS_NAME" Pool ops name for mbuf to use\n"
1286 " -n CHANNELS Number of memory channels\n"
1287 " -m MB Memory to allocate (see also --"OPT_SOCKET_MEM")\n"
1288 " -r RANKS Force number of memory ranks (don't detect)\n"
1289 " -b, --"OPT_PCI_BLACKLIST" Add a PCI device in black list.\n"
1290 " Prevent EAL from using this PCI device. The argument\n"
1291 " format is <domain:bus:devid.func>.\n"
1292 " -w, --"OPT_PCI_WHITELIST" Add a PCI device in white list.\n"
1293 " Only use the specified PCI devices. The argument format\n"
1294 " is <[domain:]bus:devid.func>. This option can be present\n"
1295 " several times (once per device).\n"
1296 " [NOTE: PCI whitelist cannot be used with -b option]\n"
1297 " --"OPT_VDEV" Add a virtual device.\n"
1298 " The argument format is <driver><id>[,key=val,...]\n"
1299 " (ex: --vdev=net_pcap0,iface=eth2).\n"
1300 " -d LIB.so|DIR Add a driver or driver directory\n"
1301 " (can be used multiple times)\n"
1302 " --"OPT_VMWARE_TSC_MAP" Use VMware TSC map instead of native RDTSC\n"
1303 " --"OPT_PROC_TYPE" Type of this process (primary|secondary|auto)\n"
1304 " --"OPT_SYSLOG" Set syslog facility\n"
1305 " --"OPT_LOG_LEVEL"=<int> Set global log level\n"
1306 " --"OPT_LOG_LEVEL"=<type-regexp>,<int>\n"
1307 " Set specific log level\n"
1308 " -v Display version information on startup\n"
1309 " -h, --help This help\n"
1310 "\nEAL options for DEBUG use only:\n"
1311 " --"OPT_HUGE_UNLINK" Unlink hugepage files after init\n"
1312 " --"OPT_NO_HUGE" Use malloc instead of hugetlbfs\n"
1313 " --"OPT_NO_PCI" Disable PCI\n"
1314 " --"OPT_NO_HPET" Disable HPET\n"
1315 " --"OPT_NO_SHCONF" No shared config (mmap'd files)\n"
1316 "\n", RTE_MAX_LCORE);