Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-10 Thread William Breathitt Gray
On Thu, Oct 10, 2019 at 10:21:45AM +0200, Geert Uytterhoeven wrote: > Hi Andy, > > On Thu, Oct 10, 2019 at 10:08 AM Andy Shevchenko > wrote: > > On Thu, Oct 10, 2019 at 09:49:51AM +0200, Geert Uytterhoeven wrote: > > > On Thu, Oct 10, 2019 at 9:42 AM Andy Shevchenko > > > wrote: > > > > On Thu,

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-10 Thread Geert Uytterhoeven
Hi Andy, On Thu, Oct 10, 2019 at 10:08 AM Andy Shevchenko wrote: > On Thu, Oct 10, 2019 at 09:49:51AM +0200, Geert Uytterhoeven wrote: > > On Thu, Oct 10, 2019 at 9:42 AM Andy Shevchenko > > wrote: > > > On Thu, Oct 10, 2019 at 9:29 AM Geert Uytterhoeven > > > wrote: > > > > On Thu, Oct 10, 20

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-10 Thread Andy Shevchenko
On Thu, Oct 10, 2019 at 09:49:51AM +0200, Geert Uytterhoeven wrote: > On Thu, Oct 10, 2019 at 9:42 AM Andy Shevchenko > wrote: > > On Thu, Oct 10, 2019 at 9:29 AM Geert Uytterhoeven > > wrote: > > > On Thu, Oct 10, 2019 at 7:49 AM Andy Shevchenko > > > wrote: > > > > On Thu, Oct 10, 2019 at 5:3

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-10 Thread Geert Uytterhoeven
Hi Andy, On Thu, Oct 10, 2019 at 9:42 AM Andy Shevchenko wrote: > On Thu, Oct 10, 2019 at 9:29 AM Geert Uytterhoeven > wrote: > > On Thu, Oct 10, 2019 at 7:49 AM Andy Shevchenko > > wrote: > > > On Thu, Oct 10, 2019 at 5:31 AM Masahiro Yamada > > > wrote: > > > > On Thu, Oct 10, 2019 at 3:54

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-10 Thread Andy Shevchenko
On Thu, Oct 10, 2019 at 9:29 AM Geert Uytterhoeven wrote: > On Thu, Oct 10, 2019 at 7:49 AM Andy Shevchenko > wrote: > > On Thu, Oct 10, 2019 at 5:31 AM Masahiro Yamada > > wrote: > > > On Thu, Oct 10, 2019 at 3:54 AM Geert Uytterhoeven > > > wrote: > > > > On Wed, Oct 9, 2019 at 7:09 PM Andy

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Geert Uytterhoeven
Hi Andy, On Thu, Oct 10, 2019 at 7:49 AM Andy Shevchenko wrote: > On Thu, Oct 10, 2019 at 5:31 AM Masahiro Yamada > wrote: > > On Thu, Oct 10, 2019 at 3:54 AM Geert Uytterhoeven > > wrote: > > > On Wed, Oct 9, 2019 at 7:09 PM Andy Shevchenko > > > wrote: > > > > On Thu, Oct 10, 2019 at 01:28:

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Andy Shevchenko
On Thu, Oct 10, 2019 at 5:31 AM Masahiro Yamada wrote: > On Thu, Oct 10, 2019 at 3:54 AM Geert Uytterhoeven > wrote: > > On Wed, Oct 9, 2019 at 7:09 PM Andy Shevchenko > > wrote: > > > On Thu, Oct 10, 2019 at 01:28:08AM +0900, Masahiro Yamada wrote: > > > > On Thu, Oct 10, 2019 at 12:27 AM Will

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Masahiro Yamada
On Thu, Oct 10, 2019 at 3:54 AM Geert Uytterhoeven wrote: > > Hi Andy, > > On Wed, Oct 9, 2019 at 7:09 PM Andy Shevchenko > wrote: > > On Thu, Oct 10, 2019 at 01:28:08AM +0900, Masahiro Yamada wrote: > > > On Thu, Oct 10, 2019 at 12:27 AM William Breathitt Gray > > > wrote: > > > > > > > > This

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Geert Uytterhoeven
Hi Andy, On Wed, Oct 9, 2019 at 7:09 PM Andy Shevchenko wrote: > On Thu, Oct 10, 2019 at 01:28:08AM +0900, Masahiro Yamada wrote: > > On Thu, Oct 10, 2019 at 12:27 AM William Breathitt Gray > > wrote: > > > > > > This macro iterates for each 8-bit group of bits (clump) with set bits, > > > withi

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Andy Shevchenko
On Thu, Oct 10, 2019 at 01:28:08AM +0900, Masahiro Yamada wrote: > On Thu, Oct 10, 2019 at 12:27 AM William Breathitt Gray > wrote: > > > > This macro iterates for each 8-bit group of bits (clump) with set bits, > > within a bitmap memory region. For each iteration, "start" is set to the > > bit o

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread William Breathitt Gray
On Thu, Oct 10, 2019 at 01:28:08AM +0900, Masahiro Yamada wrote: > On Thu, Oct 10, 2019 at 12:27 AM William Breathitt Gray > wrote: > > > > This macro iterates for each 8-bit group of bits (clump) with set bits, > > within a bitmap memory region. For each iteration, "start" is set to the > > bit o

Re: [PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread Masahiro Yamada
On Thu, Oct 10, 2019 at 12:27 AM William Breathitt Gray wrote: > > This macro iterates for each 8-bit group of bits (clump) with set bits, > within a bitmap memory region. For each iteration, "start" is set to the > bit offset of the found clump, while the respective clump value is > stored to the

[PATCH v17 01/14] bitops: Introduce the for_each_set_clump8 macro

2019-10-09 Thread William Breathitt Gray
This macro iterates for each 8-bit group of bits (clump) with set bits, within a bitmap memory region. For each iteration, "start" is set to the bit offset of the found clump, while the respective clump value is stored to the location pointed by "clump". Additionally, the bitmap_get_value8 and bitm