diff options
author | Damjan Marion <damarion@cisco.com> | 2021-05-14 15:00:05 +0200 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2021-05-14 18:16:15 +0200 |
commit | 2034f35308d199f7b0cc1ddceaa2e6ed1576bc18 (patch) | |
tree | 69403195ff1112da864de4beb40bd1cffd0002b0 /src/vlib/threads.h | |
parent | 9e7a0b48fee601d03642931e2826a37bd92f6883 (diff) |
vlib: remove unused code
Type: refactor
Change-Id: Ia5f670541dd43a4f6d731dda84b2d898195643fc
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vlib/threads.h')
-rw-r--r-- | src/vlib/threads.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vlib/threads.h b/src/vlib/threads.h index 9d9d387d155..2dfb535c3a5 100644 --- a/src/vlib/threads.h +++ b/src/vlib/threads.h @@ -120,17 +120,11 @@ typedef struct /* enqueue side */ CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); volatile u64 tail; - u64 enqueues; - u64 enqueue_ticks; - u64 enqueue_vectors; u32 enqueue_full_events; /* dequeue side */ CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); volatile u64 head; - u64 dequeues; - u64 dequeue_ticks; - u64 dequeue_vectors; u64 trace; u64 vector_threshold; |