diff options
author | Mohammed Hawari <mohammed@hawari.fr> | 2022-05-18 10:08:47 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-05-24 14:03:00 +0000 |
commit | e71492655fab8a70285b3dcf1419420a337750f9 (patch) | |
tree | ef0a37b531ddcd32d04a205b789f4928c4a2cb2c /src/vlib/buffer_node.h | |
parent | 9a8d3d71071ca82c139dae5aa45cb0d4620ca9e3 (diff) |
vlib: implement aux data handoff
Type: improvement
Change-Id: I20b41537a249a55f01004e45392b34adaa8fd792
Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
Diffstat (limited to 'src/vlib/buffer_node.h')
-rw-r--r-- | src/vlib/buffer_node.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/vlib/buffer_node.h b/src/vlib/buffer_node.h index 10ebd253c1b..a4c259f715c 100644 --- a/src/vlib/buffer_node.h +++ b/src/vlib/buffer_node.h @@ -391,6 +391,20 @@ vlib_buffer_enqueue_to_thread (vlib_main_t *vm, vlib_node_runtime_t *node, n_packets, drop_on_congestion); } +static_always_inline u32 +vlib_buffer_enqueue_to_thread_with_aux (vlib_main_t *vm, + vlib_node_runtime_t *node, + u32 frame_queue_index, + u32 *buffer_indices, u32 *aux, + u16 *thread_indices, u32 n_packets, + int drop_on_congestion) +{ + vlib_buffer_enqueue_to_thread_with_aux_fn_t *fn; + fn = vlib_buffer_func_main.buffer_enqueue_to_thread_with_aux_fn; + return (fn) (vm, node, frame_queue_index, buffer_indices, aux, + thread_indices, n_packets, drop_on_congestion); +} + #endif /* included_vlib_buffer_node_h */ /* |