diff options
author | Damjan Marion <damarion@cisco.com> | 2021-04-16 11:49:26 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-04-19 16:43:22 +0000 |
commit | 8932e450224fccdd8dad8992eb90bfead0ae7a7d (patch) | |
tree | a4a6784a6bfdfc96c48658fd59f85e963213dc16 /src/vnet/interface_stats.c | |
parent | ae34872077c956aa34ee816b55ccb5c5f6ab40a1 (diff) |
interface: interface-output end node rework
- rename node to more meaningful name
- introduce lookup tables
- enable multiarch
- quad-loop node
- enqqueue to next instead of enqueueing to node
Type: improvement
Change-Id: Ibb208047ae04bb6cfe56db558d3b8938bc14b4fe
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/interface_stats.c')
-rw-r--r-- | src/vnet/interface_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/interface_stats.c b/src/vnet/interface_stats.c index 40a22b48e8f..3afde0ea54f 100644 --- a/src/vnet/interface_stats.c +++ b/src/vnet/interface_stats.c @@ -198,7 +198,7 @@ VNET_FEATURE_INIT (stats_collect_rx_node, static) = { VNET_FEATURE_INIT (stats_collect_tx_node, static) = { .arc_name = "interface-output", .node_name = "stats-collect-tx", - .runs_before = VNET_FEATURES ("interface-tx"), + .runs_before = VNET_FEATURES ("interface-output-arc-end"), }; /* *INDENT-ON* */ |