diff options
author | Damjan Marion <damarion@cisco.com> | 2021-05-14 14:50:01 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-05-14 15:56:44 +0000 |
commit | 9e7a0b48fee601d03642931e2826a37bd92f6883 (patch) | |
tree | 374c35eb2b3ec43fa1341809c6b4120441331a4c /src/vnet/handoff.c | |
parent | ca1bbbb9e8015dacb55247e3e00fba79d13ad4ca (diff) |
vlib: pass node runtime to vlib_buffer_enqueue_to_thread()
Mechanical change for patch following this one...
Type: improvement
Change-Id: Iee12f3a8851f35569e6c039494a94fc36e83d20f
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/handoff.c')
-rw-r--r-- | src/vnet/handoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/handoff.c b/src/vnet/handoff.c index cbdc5289243..f64d5ad3a69 100644 --- a/src/vnet/handoff.c +++ b/src/vnet/handoff.c @@ -149,7 +149,7 @@ VLIB_NODE_FN (worker_handoff_node) (vlib_main_t * vm, b += 1; } - n_enq = vlib_buffer_enqueue_to_thread (vm, hm->frame_queue_index, from, + n_enq = vlib_buffer_enqueue_to_thread (vm, node, hm->frame_queue_index, from, thread_indices, frame->n_vectors, 1); if (n_enq < frame->n_vectors) |