aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/handoff.c
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2017-07-13 21:19:27 +0200
committerDave Barach <openvpp@barachs.net>2017-07-14 15:41:57 +0000
commit213b5aae860c2a9d5de8d4d070d0d2091af699f5 (patch)
treecd86f1ed8a60340b477022dc545835e62c14a867 /src/vnet/handoff.c
parent072401e8096c648b91f958bd911f64ce24fecff9 (diff)
vnet_buffer_t flags cleanup
Change-Id: I123eccea98abafeb31f25d2a162501e2eded60d4 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/handoff.c')
-rw-r--r--src/vnet/handoff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/handoff.c b/src/vnet/handoff.c
index 9f3c93b4b70..81cb9f55fba 100644
--- a/src/vnet/handoff.c
+++ b/src/vnet/handoff.c
@@ -130,7 +130,7 @@ worker_handoff_node_fn (vlib_main_t * vm,
/* if input node did not specify next index, then packet
should go to eternet-input */
- if (PREDICT_FALSE ((b0->flags & BUFFER_HANDOFF_NEXT_VALID) == 0))
+ if (PREDICT_FALSE ((b0->flags & VNET_BUFFER_F_HANDOFF_NEXT_VALID) == 0))
vnet_buffer (b0)->handoff.next_index =
HANDOFF_DISPATCH_NEXT_ETHERNET_INPUT;
else if (vnet_buffer (b0)->handoff.next_index ==