summaryrefslogtreecommitdiffstats
path: root/src/vlib/punt_node.c
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2020-04-08 14:31:45 -0400
committerNeale Ranns <nranns@cisco.com>2020-04-09 06:50:11 +0000
commit1adc7e78ad3eb7e800d0ce3ace56f53ab7aebffe (patch)
treed605386ed47fe48328754e3de362a860b381c79b /src/vlib/punt_node.c
parente759bb543c38a682dc31492a3a0a58669a811538 (diff)
misc: fix error handling in punt_replicate
If vlib_buffer_clone (...) fails due to a buffer allocation error, update *n_dispatched with the actual number of clones, not the requested number of clones. Punt_replicate(...) should not set *to_next[0] = bi0. The original buffer is enqueued separately in punt_dispatch_node(...) Type: fix Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: I774ad8f8c1a0633de4cf8ae5530629201c229347
Diffstat (limited to 'src/vlib/punt_node.c')
-rw-r--r--src/vlib/punt_node.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/vlib/punt_node.c b/src/vlib/punt_node.c
index e341e4007cc..de721046057 100644
--- a/src/vlib/punt_node.c
+++ b/src/vlib/punt_node.c
@@ -120,11 +120,16 @@ punt_replicate (vlib_main_t * vm,
* so there's no need to check if the to_next frame
* is full */
}
- *n_dispatched = *n_dispatched + n_clones0;
+ *n_dispatched = *n_dispatched + n_cloned0;
/* The original buffer is the first clone */
next0 = punt_dp_db[pr0][0];
- *to_next[0] = bi0;
+ /*
+ * Note: the original buffer is enqueued in punt_dispatch_node.
+ * Don't do it here.
+ *
+ * *to_next[0] = bi0;
+ */
return next0;
}