Home
last modified time | relevance | path

Searched refs:coremask (Results 1 – 22 of 22) sorted by relevance

/dpdk/app/test/
H A Dtest_mp_secondary.c69 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 Dtest_pdump.c176 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 Dtest_timer_secondary.c53 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 Dmain.c76 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 Deal_common_options.c596 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 Dtest-null.sh10 coremask=${2:-3} # default using cores 0 and 1
30 $testpmd -c $coremask --no-huge -m 20 \
/dpdk/doc/guides/prog_guide/
H A Dservice_cores.rst29 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 Dmeson_ut.rst63 Because of this, it is recommended not to set any default coremask or memory
H A Dmulti_proc_support.rst167 …ning as a single application and using shared memory must have distinct coremask/corelist argument…
/dpdk/doc/guides/linux_gsg/
H A Dbuild_sample_apps.rst129 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 Dmulti_process.rst40 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 Dip_frag.rst69 EAL: coremask set to 14
H A Dtest_pipeline.rst50 The -c or -l EAL CPU coremask/corelist option has to contain exactly 3 CPU cores.
H A Dip_reassembly.rst65 EAL: coremask set to 14
H A Dqos_scheduler.rst197 The EAL coremask/corelist is constrained to contain the default main core 1 and the RX, WT and TX c…
H A Dkernel_nic_interface.rst132 The ``-c coremask`` or ``-l corelist`` parameter of the EAL options must
/dpdk/doc/guides/faq/
H A Dfaq.rst50 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 Dparameters.c252 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 Dtestbbdev.rst79 according to value from RTE configuration (EAL coremask)
/dpdk/doc/guides/testpmd_app_ug/
H A Drun_app.rst77 * ``--coremask=0xXX``
H A Dtestpmd_funcs.rst726 set coremask
731 testpmd> set coremask (mask)
733 This is equivalent to the ``--coremask`` command-line option.
/dpdk/doc/guides/rel_notes/
H A Drelease_18_11.rst303 which can make passing additional parameters, such as a coremask,