From 2f630188b91b58eca379c9cc9944986af3e00ae5 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 13 Aug 2020 00:17:51 -0700 Subject: vcl: clear ct rx event on right fifo Type: fix Signed-off-by: Florin Coras Change-Id: I70bab0d86287c108c6dffda5c5b2f29277c15de1 --- src/vcl/vppcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index d73c73be383..1622409c0f9 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -2198,7 +2198,7 @@ if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \ } \ else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \ { \ - svm_fifo_unset_event (_s->ct_rx_fifo); \ + svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \ if (svm_fifo_is_empty (_s->ct_rx_fifo)) \ break; \ } \ -- cgit 1.2.3-korg