Re: [PATCH v3 1/5] latencystats: replace use of VLA

2024-04-17 Thread Tyler Retzlaff
On Wed, Apr 17, 2024 at 10:07:23AM -0700, Stephen Hemminger wrote: > The temporary array latencystats is not needed if the algorithm > is converted into one pass. > > Signed-off-by: Stephen Hemminger > --- if this series is merged first, my series here https://patchwork.dpdk.org/project/dpdk/pat

RE: [PATCH v3 1/5] latencystats: replace use of VLA

2024-04-17 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Wednesday, 17 April 2024 19.07 > > The temporary array latencystats is not needed if the algorithm > is converted into one pass. > > Signed-off-by: Stephen Hemminger > --- > lib/latencystats/rte_latencystats.c | 31 ++

[PATCH v3 1/5] latencystats: replace use of VLA

2024-04-17 Thread Stephen Hemminger
The temporary array latencystats is not needed if the algorithm is converted into one pass. Signed-off-by: Stephen Hemminger --- lib/latencystats/rte_latencystats.c | 31 +++-- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/lib/latencystats/rte_latencysta