Re: [EXT] Re: [PATCH v3] bitmap: add scan from offset function

2023-07-03 Thread Thomas Monjalon
m v4, or there's another > > > approach to resolve this > > issue(beside creating .c file)? > > > > > > /Volodymyr > > > > > > > -Origi

RE: [EXT] Re: [PATCH v3] bitmap: add scan from offset function

2023-07-03 Thread Volodymyr Fialko
> -Original Message- > From: Thomas Monjalon > Sent: Monday, July 3, 2023 1:51 PM > To: Dumitrescu, Cristian ; Volodymyr Fialko > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Anoob Joseph > > Subject: [EXT] Re: [PATCH v3] bitmap: add scan from offset func

Re: [PATCH v3] bitmap: add scan from offset function

2023-07-03 Thread Thomas Monjalon
Message- > > From: Dumitrescu, Cristian > > Sent: Friday, June 23, 2023 2:41 PM > > To: Thomas Monjalon ; Volodymyr Fialko > > > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Anoob > > Joseph > >

RE: [PATCH v3] bitmap: add scan from offset function

2023-07-03 Thread Volodymyr Fialko
odymyr Fialko > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Anoob Joseph > > Subject: [EXT] RE: [PATCH v3] bitmap: add scan from offset function > > External Email > > -- > > > > -Orig

RE: [PATCH v3] bitmap: add scan from offset function

2023-06-23 Thread Dumitrescu, Cristian
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, June 22, 2023 6:45 PM > To: Volodymyr Fialko > Cc: dev@dpdk.org; Dumitrescu, Cristian ; > jer...@marvell.com; ano...@marvell.com > Subject: Re: [PATCH v3] bitmap: add scan from offset function

Re: [PATCH v3] bitmap: add scan from offset function

2023-06-22 Thread Thomas Monjalon
21/06/2023 12:01, Volodymyr Fialko: > Currently, in the case when we search for a bit set after a particular > value, the bitmap has to be scanned from the beginning and > rte_bitmap_scan() has to be called multiple times until we hit the value. > > Add a new rte_bitmap_scan_from_offset() function

RE: [PATCH v3] bitmap: add scan from offset function

2023-06-21 Thread Dumitrescu, Cristian
> -Original Message- > From: Volodymyr Fialko > Sent: Wednesday, June 21, 2023 11:01 AM > To: dev@dpdk.org; Dumitrescu, Cristian > Cc: jer...@marvell.com; ano...@marvell.com; tho...@monjalon.net; > Volodymyr Fialko > Subject: [PATCH v3] bitmap: add scan

[PATCH v3] bitmap: add scan from offset function

2023-06-21 Thread Volodymyr Fialko
Currently, in the case when we search for a bit set after a particular value, the bitmap has to be scanned from the beginning and rte_bitmap_scan() has to be called multiple times until we hit the value. Add a new rte_bitmap_scan_from_offset() function to initialize scan state at the given offset