/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
dts/configurations/nodes.example.yaml
55 строк
2 KB
Andrew Bailey
dts: add cryptodev package
09 мар 2026, 03:54
09 мар 2026, 03:54
8ee2df9
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright 2022-2023 The DPDK contributors # Copyright 2023 Arm Limited # Optional Fields: # `hugepages_2mb`: if removed, will use system hugepage configuration # `cryptodevs`: # Uncomment to run cryptodev tests; add physical cryptodev devices by their BDF # `crypto_device_type`: # Uncomment to run cryptodev tests; the device type of the DUT e.g. (crypto_qat, crypto_zuc, # crypto_aesni_mb); the complete list of device types can be found here # https://doc.dpdk.org/guides-24.07/cryptodevs/overview.html # Define a system under test node, having two network ports physically # connected to the corresponding ports in TG 1 (the peer node) - name: "SUT 1" hostname: sut1.change.me.localhost user: dtsuser os: linux ports: - name: port-0 pci: "0000:00:08.0" os_driver_for_dpdk: vfio-pci # OS driver that DPDK will use os_driver: i40e # OS driver to bind when the tests are not running - name: port-1 pci: "0000:00:08.1" os_driver_for_dpdk: vfio-pci os_driver: i40e hugepages_2mb: # see 'Optional Fields' number_of: 256 force_first_numa: false # cryptodevs: # see `Optional Fields` # - name: cryptodev-0 # pci: "ffff:ff:ff.9" # os_driver_for_dpdk: vfio-pci # OS driver that DPDK will use for cryptodev VFs # os_driver: _ # This is unused but a value is necessary to run dts # crypto_device_type: # see `Optional Fields` # Define a Scapy traffic generator node, having two network ports # physically connected to the corresponding ports in SUT 1 (the peer node). - name: "TG 1" hostname: tg1.change.me.localhost user: dtsuser os: linux ports: - name: port-0 pci: "0000:00:08.0" os_driver_for_dpdk: rdma os_driver: rdma - name: port-1 pci: "0000:00:08.1" os_driver_for_dpdk: rdma os_driver: rdma hugepages_2mb: # see 'Optional Fields' number_of: 256 force_first_numa: false