Re: [PATCH v3] app/test: fix stack overflow in lpm6_perf_autotest

2025-03-18 Thread Thomas Monjalon
05/03/2025 21:04, Medvedkin, Vladimir: > On 05/03/2025 14:45, Andre Muezerie wrote: > > On Wed, Mar 05, 2025 at 10:08:33AM +, Bruce Richardson wrote: > >> On Wed, Dec 18, 2024 at 07:21:26AM -0800, Andre Muezerie wrote: > >>> Test lpm6_perf_autotest was hitting a stack overflow on Windows > >>>

Re: [PATCH v3] app/test: fix stack overflow in lpm6_perf_autotest

2025-03-05 Thread Medvedkin, Vladimir
Hi Andre, On 05/03/2025 14:45, Andre Muezerie wrote: On Wed, Mar 05, 2025 at 10:08:33AM +, Bruce Richardson wrote: On Wed, Dec 18, 2024 at 07:21:26AM -0800, Andre Muezerie wrote: Test lpm6_perf_autotest was hitting a stack overflow on Windows with both MSVC and Clang. The fix is to move s

Re: [PATCH v3] app/test: fix stack overflow in lpm6_perf_autotest

2025-03-05 Thread Andre Muezerie
On Wed, Mar 05, 2025 at 10:08:33AM +, Bruce Richardson wrote: > On Wed, Dec 18, 2024 at 07:21:26AM -0800, Andre Muezerie wrote: > > Test lpm6_perf_autotest was hitting a stack overflow on Windows > > with both MSVC and Clang. > > > > The fix is to move some of the data from the stack to the he

Re: [PATCH v3] app/test: fix stack overflow in lpm6_perf_autotest

2025-03-05 Thread Bruce Richardson
On Wed, Dec 18, 2024 at 07:21:26AM -0800, Andre Muezerie wrote: > Test lpm6_perf_autotest was hitting a stack overflow on Windows > with both MSVC and Clang. > > The fix is to move some of the data from the stack to the heap. > > Signed-off-by: Andre Muezerie > --- > app/test/test_lpm6_perf.c |

[PATCH v3] app/test: fix stack overflow in lpm6_perf_autotest

2024-12-18 Thread Andre Muezerie
Test lpm6_perf_autotest was hitting a stack overflow on Windows with both MSVC and Clang. The fix is to move some of the data from the stack to the heap. Signed-off-by: Andre Muezerie --- app/test/test_lpm6_perf.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git