diff options
author | Florin Coras <fcoras@cisco.com> | 2024-02-01 20:46:15 -0800 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-02-02 14:44:26 +0000 |
commit | 4cadd3b15b54823ac35a235357a7893a74c6c1f7 (patch) | |
tree | ab7e7ef2203409fb13ee0fab2c5936d74c8342a8 /src/vlib/threads.h | |
parent | d7f17a23931a64badc95d57a332c2700e2f34118 (diff) |
vlib api: move wrkr rpc flushing to vlib
Move vlib worker rpc flushing to main worker from memclnt api into vlib.
RPCs are no longer delivered via binary api queues
Type: refactor
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I5b8761a57d1f4a1f2220e860cfb2e6b980f46f6d
Diffstat (limited to 'src/vlib/threads.h')
-rw-r--r-- | src/vlib/threads.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vlib/threads.h b/src/vlib/threads.h index 636212c939e..e5a1f6d7ec5 100644 --- a/src/vlib/threads.h +++ b/src/vlib/threads.h @@ -174,6 +174,10 @@ void vlib_worker_thread_node_refork (void); * Wait until each of the workers has been once around the track */ void vlib_worker_wait_one_loop (void); +/** + * Flush worker's pending rpc requests to main thread's rpc queue + */ +void vlib_worker_flush_pending_rpc_requests (vlib_main_t *vm); static_always_inline uword vlib_get_thread_index (void) |