| /dpdk/examples/vm_power_manager/ |
| H A D | oob_monitor_x86.c | 151 long setup; in add_core_to_monitor() local 165 setup = IA32_PERFEVT_BRANCH_HITS; in add_core_to_monitor() 166 ret = pwrite(ci->cd[core].msr_fd, &setup, in add_core_to_monitor() 167 sizeof(setup), IA32_PERFEVTSEL0); in add_core_to_monitor() 174 setup = IA32_PERFEVT_BRANCH_MISS; in add_core_to_monitor() 175 ret = pwrite(ci->cd[core].msr_fd, &setup, in add_core_to_monitor() 176 sizeof(setup), IA32_PERFEVTSEL1); in add_core_to_monitor() 211 long setup; in remove_core_from_monitor() local 228 setup = 0x0; /* clear event */ in remove_core_from_monitor() 229 ret = pwrite(ci->cd[core].msr_fd, &setup, in remove_core_from_monitor() [all …]
|
| /dpdk/drivers/compress/uadk/ |
| H A D | uadk_compress_pmd.c | 201 struct wd_comp_sess_setup setup = {0}; in uadk_compress_pmd_xform_create() local 221 setup.alg_type = WD_DEFLATE; in uadk_compress_pmd_xform_create() 222 setup.win_sz = WD_COMP_WS_8K; in uadk_compress_pmd_xform_create() 223 setup.comp_lv = WD_COMP_L8; in uadk_compress_pmd_xform_create() 224 setup.op_type = WD_DIR_COMPRESS; in uadk_compress_pmd_xform_create() 225 param.type = setup.op_type; in uadk_compress_pmd_xform_create() 227 setup.sched_param = ¶m; in uadk_compress_pmd_xform_create() 238 setup.alg_type = WD_DEFLATE; in uadk_compress_pmd_xform_create() 239 setup.comp_lv = WD_COMP_L8; in uadk_compress_pmd_xform_create() 240 setup.op_type = WD_DIR_DECOMPRESS; in uadk_compress_pmd_xform_create() [all …]
|
| /dpdk/app/test-bbdev/ |
| H A D | main.h | 68 int (*setup)(void); member 76 #define TEST_CASE_ST(setup, teardown, testcase) \ argument 77 {setup, teardown, testcase, #testcase} 83 int (*setup)(void); member
|
| H A D | main.c | 60 if (suite->setup) { in unit_test_suite_runner() 61 test_result = suite->setup(); in unit_test_suite_runner() 77 if (suite->unit_test_cases[total].setup) in unit_test_suite_runner() 78 test_result = suite->unit_test_cases[total].setup(); in unit_test_suite_runner()
|
| /dpdk/drivers/net/ark/ |
| H A D | ark_ddm.c | 39 ddm->setup.qcommand = enable ? 1U : 0U; in ark_ddm_queue_enable() 45 ddm->setup.cons_write_index_addr = cons_addr; in ark_ddm_queue_setup() 46 ddm->setup.cons_index = 0; in ark_ddm_queue_setup()
|
| H A D | ark_udm.c | 15 uint32_t idnum = udm->setup.idnum; in ark_udm_verify() 16 uint32_t vernum = udm->setup.vernum; in ark_udm_verify()
|
| /dpdk/doc/guides/tools/ |
| H A D | hugepages.rst | 59 * ``--setup SIZE`` 66 status of huge pages, modifying the setup requires root privileges. 76 To a complete setup of with 2 Gigabyte of 1G huge pages:: 78 dpdk-hugepages.py -p 1G --setup 2G
|
| /dpdk/examples/pipeline/examples/ |
| H A D | ipsec.io | 12 ; Note: Customize the parameters below to match your setup. 20 ; Note: Customize the parameters below to match your setup.
|
| H A D | ethdev.io | 12 ; Note: Customize the parameters below to match your setup. 22 ; Note: Customize the parameters below to match your setup.
|
| H A D | pcap.io | 12 ; Note: Customize the parameters below to match your setup. 22 ; Note: Customize the parameters below to match your setup.
|
| /dpdk/doc/guides/platform/ |
| H A D | octeontx.rst | 7 This doc has information about steps to setup OCTEON TX platform 63 #. Follow the DPDK :doc:`../linux_gsg/index` to setup the basic DPDK environment. 97 meson setup build -Dexamples=<application> 104 meson setup build -Dexamples=<application> 122 source env-setup 130 meson setup build --cross-file config/arm/arm64_thunderx_linux_gcc 138 meson setup build --cross-file config/arm/arm64_thunderx_linux_gcc -Dexamples=<application>
|
| H A D | index.rst | 7 The following are platform specific guides and setup information.
|
| H A D | bluefield.rst | 14 This document has information about steps to setup NVIDIA BlueField platform 65 meson setup build 119 meson setup build --cross-file config/arm/arm64_bluefield_linux_gcc
|
| /dpdk/doc/guides/nics/features/ |
| H A D | failsafe.ini | 12 Runtime Rx queue setup = Y 13 Runtime Tx queue setup = Y
|
| H A D | hns3_vf.ini | 11 Runtime Rx queue setup = Y 12 Runtime Tx queue setup = Y
|
| H A D | ipn3ke.ini | 12 Runtime Rx queue setup = Y 13 Runtime Tx queue setup = Y
|
| H A D | iavf.ini | 14 Runtime Rx queue setup = Y 15 Runtime Tx queue setup = Y
|
| H A D | sfc.ini | 14 Runtime Rx queue setup = Y 15 Runtime Tx queue setup = Y
|
| H A D | i40e.ini | 14 Runtime Rx queue setup = Y 15 Runtime Tx queue setup = Y
|
| /dpdk/drivers/net/softnic/ |
| H A D | firmware_tx.io | 14 ; Note: Customize the parameters below to match your setup. 28 ; Note: Customize the parameters below to match your setup.
|
| H A D | firmware_rx.io | 14 ; Note: Customize the parameters below to match your setup. 28 ; Note: Customize the parameters below to match your setup.
|
| H A D | firmware.cli | 6 # is running the forwarding thread, and core 2 is setup as service core (see the -s <core_mask> 17 # To setup the CLI prompt to the Soft NIC device, the DPDK test-pmd application needs to be modified
|
| /dpdk/app/test/ |
| H A D | test.c | 331 if (suite->setup) { in unit_test_suite_runner() 332 test_success = suite->setup(); in unit_test_suite_runner() 356 if (tc.setup) in unit_test_suite_runner() 357 test_success = tc.setup(); in unit_test_suite_runner()
|
| /dpdk/doc/guides/howto/ |
| H A D | pvp_reference_benchmark.rst | 6 PVP reference benchmark setup using testpmd 9 This guide lists the steps required to setup a PVP benchmark using testpmd as 10 a simple forwarder between NICs and Vhost interfaces. The goal of this setup 27 PVP setup using 2 NICs 34 Host setup 37 In this setup, we isolate 6 cores (from CPU2 to CPU7) on the same NUMA 270 Guest setup
|
| /dpdk/doc/guides/eventdevs/ |
| H A D | dpaa.rst | 34 See :doc:`../platform/dpaa` for setup information 41 - Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK enviro…
|