diff options
author | Damjan Marion <damarion@cisco.com> | 2021-12-28 20:32:20 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-12-31 13:03:14 +0000 |
commit | a2b7a02d9c3e03b4923f4153714f43e361960cf0 (patch) | |
tree | 57092a8ee7cc346dfe5a91966e91358a4b30b0d9 /src/plugins/dpdk/device/cli.c | |
parent | 03e40e6230bf14aebf7b8d058ca9a32fe3d4e4fc (diff) |
vlib: remove external thread management support
Now DPDK have API to register external threads so we can remove this
mess...
Type: improvement
Change-Id: I71a21f0cd94bd668aa406710c75a0bcc63fdc840
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dpdk/device/cli.c')
-rw-r--r-- | src/plugins/dpdk/device/cli.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/cli.c b/src/plugins/dpdk/device/cli.c index 0f771c6ba77..ba922e29a54 100644 --- a/src/plugins/dpdk/device/cli.c +++ b/src/plugins/dpdk/device/cli.c @@ -373,7 +373,8 @@ show_dpdk_version_command_fn (vlib_main_t * vm, * Example of how to display how many DPDK buffer test command has allocated: * @cliexstart{show dpdk version} * DPDK Version: DPDK 16.11.0 - * DPDK EAL init args: -c 1 -n 4 --huge-dir /run/vpp/hugepages --file-prefix vpp -w 0000:00:08.0 -w 0000:00:09.0 --master-lcore 0 --socket-mem 256 + * DPDK EAL init args: --in-memory --no-telemetry --file-prefix vpp + * -w 0000:00:08.0 -w 0000:00:09.0 * @cliexend ?*/ /* *INDENT-OFF* */ |