From 75b7746cc4e19fac93085dc3e20f6030039548b8 Mon Sep 17 00:00:00 2001 From: Rajasekar Raja Date: Mon, 22 Apr 2024 13:50:47 -0400 Subject: [PATCH] zebra: Actually display I/O buffer sizes (part-2) An extension of commit-8d8f12ba8e5cd11c189b8475b05539fa8415ccb9 Removing ifdef DEV_BUILD in stream_fifo_push as well to make the 'sh zebra client' display the current I/O fifo along with max fifo items. TICKET :#3390099 Signed-off-by: Rajasekar Raja --- lib/stream.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/stream.c b/lib/stream.c index 2de3abdf45fc..e4ed00c5c21a 100644 --- a/lib/stream.c +++ b/lib/stream.c @@ -1256,9 +1256,7 @@ void stream_fifo_init(struct stream_fifo *fifo) /* Add new stream to fifo. */ void stream_fifo_push(struct stream_fifo *fifo, struct stream *s) { -#if defined DEV_BUILD size_t max, curmax; -#endif if (fifo->tail) fifo->tail->next = s; @@ -1267,15 +1265,12 @@ void stream_fifo_push(struct stream_fifo *fifo, struct stream *s) fifo->tail = s; fifo->tail->next = NULL; -#if !defined DEV_BUILD atomic_fetch_add_explicit(&fifo->count, 1, memory_order_release); -#else max = atomic_fetch_add_explicit(&fifo->count, 1, memory_order_release); curmax = atomic_load_explicit(&fifo->max_count, memory_order_relaxed); if (max > curmax) atomic_store_explicit(&fifo->max_count, max, memory_order_relaxed); -#endif } void stream_fifo_push_safe(struct stream_fifo *fifo, struct stream *s)