c8e6ceeceb
A new sample app demonstrating use of driver for CBDMA. The app receives packets, performs software or hardware copy, changes packets' MAC addresses (if enabled) and forwards them. The change covers ports initialization, closing connection and argument parsing. Signed-off-by: Pawel Modrak <pawelx.modrak@intel.com> Signed-off-by: Marcin Baran <marcinx.baran@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
16 lines
368 B
Meson
16 lines
368 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
build = dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV')
|
|
|
|
deps += ['rawdev_ioat']
|
|
|
|
sources = files(
|
|
'ioatfwd.c'
|
|
)
|