From 71bb05454c97cc18e3c95127b54385c52e4c57c2 Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Wed, 16 Aug 2017 12:06:15 +0200 Subject: acl-plugin: time out the sessions created by main thread too (VPP-948) In multithread setup the main thread may send packets, which may pass through the node with permit+reflect action. This creates the connection in lists for thread0, however in multithread there are no interupt handlers there. Ensure we are not spending too much time spinning in a tight cycle by suspending the main cleaner thread until the current iteration of interrupts is processed. Change-Id: Idb7346737757ee9a67b5d3e549bc9ad9aab22e89 Signed-off-by: Andrew Yourtchenko (cherry picked from commit c1ff53f25d04ec1cc31844abd38014e91e398b5f) --- src/plugins/acl/acl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/plugins/acl/acl.h') diff --git a/src/plugins/acl/acl.h b/src/plugins/acl/acl.h index 14c6129c07f..dcb4e0e9378 100644 --- a/src/plugins/acl/acl.h +++ b/src/plugins/acl/acl.h @@ -230,6 +230,8 @@ typedef struct { u64 fa_current_cleaner_timer_wait_interval; + int fa_interrupt_generation; + /* per-worker data related t conn management */ acl_fa_per_worker_data_t *per_worker_data; -- cgit 1.2.3-korg