5b2655a693
This node classifies pkts based on packet type and sends them to appropriate next node. This is node helps in distribution of packets from ethdev_rx node to different next node with a constant overhead for all packet types. Currently all except non fragmented IPV4 packets are marked to be sent to "pkt_drop" node. Performance difference on ARM64 Octeontx2 is -4.9% due to addition of new node in the path. Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
10 lines
465 B
Meson
10 lines
465 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2020 Marvell International Ltd.
|
|
|
|
sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c', 'ip4_lookup.c',
|
|
'ip4_rewrite.c', 'pkt_drop.c', 'ethdev_ctrl.c', 'pkt_cls.c')
|
|
headers = files('rte_node_ip4_api.h', 'rte_node_eth_api.h')
|
|
# Strict-aliasing rules are violated by uint8_t[] to context size casts.
|
|
cflags += '-fno-strict-aliasing'
|
|
deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']
|