From: Florin Coras Date: Thu, 13 Aug 2020 07:17:51 +0000 (-0700) Subject: vcl: clear ct rx event on right fifo X-Git-Tag: v21.01-rc0~115 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2f630188b91b58eca379c9cc9944986af3e00ae5;p=vpp.git vcl: clear ct rx event on right fifo Type: fix Signed-off-by: Florin Coras Change-Id: I70bab0d86287c108c6dffda5c5b2f29277c15de1 --- 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; \ } \