diff options
author | Damjan Marion <damarion@cisco.com> | 2018-07-20 18:47:05 +0200 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2018-07-20 19:43:36 +0200 |
commit | 78fd7e810c24b9d638ac7c7f08edabf692543743 (patch) | |
tree | c676d0f4bc9a7471fd5c60cb02fb995868fa65d6 /src/vlib/threads.h | |
parent | 508498f74d2df98e70a961d030cf0128a63a926d (diff) |
Add congestion drop in interface handoff
This prevents deadlock in case when worker A sends to B and worker B
sends to A
Change-Id: Id9436960f932c58325fe4f5ef8ec67b50031aeda
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/threads.h')
-rw-r--r-- | src/vlib/threads.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vlib/threads.h b/src/vlib/threads.h index f78ec1b9fa5..b47a633c2cc 100644 --- a/src/vlib/threads.h +++ b/src/vlib/threads.h @@ -163,8 +163,18 @@ vlib_frame_queue_t; typedef struct { + vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index; + vlib_frame_queue_t **congested_handoff_queue_by_thread_index; +} vlib_frame_queue_per_thread_data_t; + +typedef struct +{ u32 node_index; + u32 frame_queue_nelts; + u32 queue_hi_thresh; + vlib_frame_queue_t **vlib_frame_queues; + vlib_frame_queue_per_thread_data_t *per_thread_data; /* for frame queue tracing */ frame_queue_trace_t *frame_queue_traces; |