Re: [PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-11 Thread Stanisław Kardach
On Wed, May 11, 2022 at 1:28 AM Honnappa Nagarahalli wrote: > > > > > > > When compiling for RISC-V in debug mode the large amount of inlining in > > test_ring_basic_ex() and test_ring_with_exact_size() (in test_ring.c) leads > > to > > large loop bodies. This causes 'goto' and 'for' loop PC-rel

RE: [PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-10 Thread Honnappa Nagarahalli
> > When compiling for RISC-V in debug mode the large amount of inlining in > test_ring_basic_ex() and test_ring_with_exact_size() (in test_ring.c) leads to > large loop bodies. This causes 'goto' and 'for' loop PC-relative jumps > generated > by the compiler to go beyond the architecture limit

Re: [PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-05 Thread Stephen Hemminger
On Thu, 5 May 2022 19:43:43 +0200 Stanisław Kardach wrote: > On Thu, May 5, 2022 at 7:35 PM Stephen Hemminger > wrote: > > > On Thu, 5 May 2022 19:30:01 +0200 > > Stanislaw Kardach wrote: > > > > > When compiling for RISC-V in debug mode the large amount of inlining in > > > test_ring_basic

Re: [PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-05 Thread Stanisław Kardach
On Thu, May 5, 2022 at 7:35 PM Stephen Hemminger wrote: > On Thu, 5 May 2022 19:30:01 +0200 > Stanislaw Kardach wrote: > > > When compiling for RISC-V in debug mode the large amount of inlining in > > test_ring_basic_ex() and test_ring_with_exact_size() (in test_ring.c) > > leads to large loop

Re: [PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-05 Thread Stephen Hemminger
On Thu, 5 May 2022 19:30:01 +0200 Stanislaw Kardach wrote: > When compiling for RISC-V in debug mode the large amount of inlining in > test_ring_basic_ex() and test_ring_with_exact_size() (in test_ring.c) > leads to large loop bodies. This causes 'goto' and 'for' loop > PC-relative jumps generat

[PATCH 09/11] test/ring: disable problematic tests for RISC-V

2022-05-05 Thread Stanislaw Kardach
When compiling for RISC-V in debug mode the large amount of inlining in test_ring_basic_ex() and test_ring_with_exact_size() (in test_ring.c) leads to large loop bodies. This causes 'goto' and 'for' loop PC-relative jumps generated by the compiler to go beyond the architecture limitation of +/-1MB