Re: [PATCH 1/2] bitset: discontinue the use of GCC builtin

2024-10-16 Thread David Marchand
On Wed, Oct 16, 2024 at 4:03 PM Mattias Rönnblom wrote: > > Replace the use of __builtin_ffsll() with rte_bsf64() to be MSVC > compatible. > > Suggested-by: David Marchand > Signed-off-by: Mattias Rönnblom Series applied, thanks. -- David Marchand

Re: [PATCH 1/2] bitset: discontinue the use of GCC builtin

2024-10-16 Thread David Marchand
On Wed, Oct 16, 2024 at 4:03 PM Mattias Rönnblom wrote: > > Replace the use of __builtin_ffsll() with rte_bsf64() to be MSVC > compatible. > > Signed-off-by: Mattias Rönnblom > Suggested-by: David Marchand Thank you, lgtm. -- David Marchand

[PATCH 1/2] bitset: discontinue the use of GCC builtin

2024-10-16 Thread Mattias Rönnblom
Replace the use of __builtin_ffsll() with rte_bsf64() to be MSVC compatible. Signed-off-by: Mattias Rönnblom Suggested-by: David Marchand --- lib/eal/include/rte_bitset.h | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/eal/include/rte_bitset.h b/lib/eal/include/