diff options
author | Florin Coras <fcoras@cisco.com> | 2020-08-13 00:17:51 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-08-13 14:21:43 +0000 |
commit | 2f630188b91b58eca379c9cc9944986af3e00ae5 (patch) | |
tree | 4fcdb7c388585f3af68d281e31599d043ed0c9b9 | |
parent | 047f67eeddcb40dbffc06fcff314838b9de4533e (diff) |
vcl: clear ct rx event on right fifo
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I70bab0d86287c108c6dffda5c5b2f29277c15de1
-rw-r--r-- | src/vcl/vppcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ } \ |