summaryrefslogtreecommitdiffstats
path: root/vlib/vlib/node.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2016-11-04 11:00:27 +0100
committerDave Barach <openvpp@barachs.net>2016-11-04 14:59:42 +0000
commit87cd119ca9ff870db10b6fe1127aac8b6fc89633 (patch)
tree7cdd01d5d97bc200e45233326d2dafce083302cc /vlib/vlib/node.h
parent96e6f958bbac88e04ef6fd04bc0abda22a3b37bc (diff)
feature: store arc index in vlib_buffer
Previos implementation imposed a limit that node can be member of only one feature arc as feature arc index was stored in node runtime. Now start node stores index into vlib_buffer_t and feature nodes are taking it from there. Change-Id: I252841083bc292af7ed36bf1ac652f2b8c16bfb8 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vlib/vlib/node.h')
-rw-r--r--vlib/vlib/node.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/vlib/vlib/node.h b/vlib/vlib/node.h
index 251ee606d20..b624e9d636d 100644
--- a/vlib/vlib/node.h
+++ b/vlib/vlib/node.h
@@ -465,9 +465,6 @@ typedef struct vlib_node_runtime_t
/* CPU this node runs on */
u16 cpu_index;
- /* Index of feature arc in which the node participates */
- u16 feature_arc_index;
-
/* Function dependent node-runtime. */
u8 runtime_data[0];
}