diff options
author | Florin Coras <fcoras@cisco.com> | 2024-02-01 21:13:10 -0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-02-02 17:46:44 +0000 |
commit | e060b0a07930c615a00b697e136f5cf2400a7510 (patch) | |
tree | 91ffd7072db2bc471ff32b03b792f4606c8c6290 /src | |
parent | 4cadd3b15b54823ac35a235357a7893a74c6c1f7 (diff) |
vlib: flush rpcs on worker sync
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I89624254649089e497d119eb6cee2cecf3dc11f3
Diffstat (limited to 'src')
-rw-r--r-- | src/vlib/threads.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vlib/threads.c b/src/vlib/threads.c index b675b8819d2..03fda388edf 100644 --- a/src/vlib/threads.c +++ b/src/vlib/threads.c @@ -1519,6 +1519,7 @@ vlib_workers_sync (void) u32 thread_index = vlib_get_thread_index (); vlib_rpc_call_main_thread (vlib_worker_sync_rpc, (u8 *) &thread_index, sizeof (thread_index)); + vlib_worker_flush_pending_rpc_requests (vlib_get_main ()); } /* Wait until main thread asks for barrier */ |