| /dpdk/app/test/ |
| H A D | test_mp_secondary.c | 69 char coremask[10]; in run_secondary_instances() local 84 prgname, "-c", coremask, "--proc-type=secondary", in run_secondary_instances() 89 prgname, "-c", coremask, "--proc-type=auto", in run_secondary_instances() 94 prgname, "-c", coremask, "--proc-type=ERROR", in run_secondary_instances() 100 prgname, "-c", coremask, "--proc-type=secondary", in run_secondary_instances() 105 snprintf(coremask, sizeof(coremask), "%x", \ in run_secondary_instances()
|
| H A D | test_pdump.c | 176 char coremask[10]; in run_pdump_server_tests() local 190 prgname, "-c", coremask, "--proc-type=secondary", in run_pdump_server_tests() 194 snprintf(coremask, sizeof(coremask), "%x", in run_pdump_server_tests()
|
| H A D | test_timer_secondary.c | 53 char coremask[10]; in timer_secondary_spawn_wait() local 66 "-c", coremask, in timer_secondary_spawn_wait() 71 snprintf(coremask, sizeof(coremask), "%x", (1 << lcore)); in timer_secondary_spawn_wait()
|
| /dpdk/examples/eventdev_pipeline/ |
| H A D | main.c | 76 parse_coremask(const char *coremask) in parse_coremask() argument 85 if (coremask == NULL) in parse_coremask() 90 while (isblank(*coremask)) in parse_coremask() 91 coremask++; in parse_coremask() 92 if (coremask[0] == '0' && ((coremask[1] == 'x') in parse_coremask() 93 || (coremask[1] == 'X'))) in parse_coremask() 94 coremask += 2; in parse_coremask() 95 i = strlen(coremask); in parse_coremask() 96 while ((i > 0) && isblank(coremask[i - 1])) in parse_coremask() 102 c = coremask[i]; in parse_coremask() [all …]
|
| /dpdk/lib/eal/common/ |
| H A D | eal_common_options.c | 596 if (coremask == NULL) in eal_parse_service_coremask() 602 coremask++; in eal_parse_service_coremask() 603 if (coremask[0] == '0' && ((coremask[1] == 'x') in eal_parse_service_coremask() 605 coremask += 2; in eal_parse_service_coremask() 606 i = strlen(coremask); in eal_parse_service_coremask() 614 c = coremask[i]; in eal_parse_service_coremask() 762 coremask++; in eal_parse_coremask() 763 if (coremask[0] == '0' && ((coremask[1] == 'x') in eal_parse_coremask() 765 coremask += 2; in eal_parse_coremask() 766 i = strlen(coremask); in eal_parse_coremask() [all …]
|
| /dpdk/devtools/ |
| H A D | test-null.sh | 10 coremask=${2:-3} # default using cores 0 and 1 30 $testpmd -c $coremask --no-huge -m 20 \
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | service_cores.rst | 29 using the service coremask, or by dynamically adding cores using the API. 30 The simpler of the two is to pass the `-s` coremask argument to EAL, which will 31 take any cores available in the main DPDK coremask, and if the bits are also set 32 in the service coremask the cores become service-cores instead of DPDK
|
| H A D | meson_ut.rst | 63 Because of this, it is recommended not to set any default coremask or memory
|
| H A D | multi_proc_support.rst | 167 …ning as a single application and using shared memory must have distinct coremask/corelist argument…
|
| /dpdk/doc/guides/linux_gsg/ |
| H A D | build_sample_apps.rst | 129 The coremask (-c 0x0f) or corelist (-l 0-3) parameter is always mandatory for DPDK applications. 132 it is recommended that the core layout for each platform be considered when choosing the coremask/c… 154 …en different board layouts and should be checked before selecting an application coremask/corelist.
|
| /dpdk/doc/guides/sample_app_ug/ |
| H A D | multi_process.rst | 40 passing at least two cores in the coremask/corelist, as follows: 54 EAL: coremask set to 3 76 again run the same binary setting at least two cores in the coremask/corelist: 264 …ngle thread, the main thread, that is, the lowest numbered lcore in the coremask/corelist, perform… 265 If a coremask/corelist is specified with more than a single lcore bit set in it,
|
| H A D | ip_frag.rst | 69 EAL: coremask set to 14
|
| H A D | test_pipeline.rst | 50 The -c or -l EAL CPU coremask/corelist option has to contain exactly 3 CPU cores.
|
| H A D | ip_reassembly.rst | 65 EAL: coremask set to 14
|
| H A D | qos_scheduler.rst | 197 The EAL coremask/corelist is constrained to contain the default main core 1 and the RX, WT and TX c…
|
| H A D | kernel_nic_interface.rst | 132 The ``-c coremask`` or ``-l corelist`` parameter of the EAL options must
|
| /dpdk/doc/guides/faq/ |
| H A D | faq.rst | 50 For example, if your EAL coremask is 0xff0, the main core will usually be the first core in the cor… 170 cores and run the application's other work on other cores using the DPDK's "coremask" setting to sp…
|
| /dpdk/app/test-pmd/ |
| H A D | parameters.c | 252 parse_fwd_coremask(const char *coremask) in parse_fwd_coremask() argument 259 cm = strtoull(coremask, &end, 16); in parse_fwd_coremask() 260 if ((coremask[0] == '\0') || (end == NULL) || (*end != '\0')) in parse_fwd_coremask()
|
| /dpdk/doc/guides/tools/ |
| H A D | testbbdev.rst | 79 according to value from RTE configuration (EAL coremask)
|
| /dpdk/doc/guides/testpmd_app_ug/ |
| H A D | run_app.rst | 77 * ``--coremask=0xXX``
|
| H A D | testpmd_funcs.rst | 726 set coremask 731 testpmd> set coremask (mask) 733 This is equivalent to the ``--coremask`` command-line option.
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_18_11.rst | 303 which can make passing additional parameters, such as a coremask,
|