Add extern objects and functions to plug into the SWX pipeline any functionality that cannot be efficiently implemented with existing instructions, e.g. special checksum/ECC, crypto, meters, stats arrays, heuristics, etc. In/out arguments are passed through mailbox with format defined by struct. Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
14 lines
369 B
Meson
14 lines
369 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
sources = files('rte_pipeline.c',
|
|
'rte_port_in_action.c',
|
|
'rte_table_action.c',
|
|
'rte_swx_pipeline.c',)
|
|
headers = files('rte_pipeline.h',
|
|
'rte_port_in_action.h',
|
|
'rte_table_action.h',
|
|
'rte_swx_pipeline.h',
|
|
'rte_swx_extern.h',)
|
|
deps += ['port', 'table', 'meter', 'sched', 'cryptodev']
|