public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS
@ 2023-06-21 16:26 Andy Shevchenko
  2023-06-21 16:26 ` [PATCH v1 1/2] MAINTAINERS: Add bits.h to the BITMAP API record Andy Shevchenko
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Andy Shevchenko @ 2023-06-21 16:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: Yury Norov, Rasmus Villemoes, Andy Shevchenko, Lucas De Marchi

During discussion
https://lore.kernel.org/r/20230509051403.2748545-1-lucas.demarchi@intel.com
I was started wondering why neither Yury nor Rasmus commented on that.

Hence I wanted to add some headers to the bitmap API MAINTAINERS for
watching the changes made elsewhere are they may correlate with bit
operations.

Cc: Lucas De Marchi <lucas.demarchi@intel.com>

Andy Shevchenko (2):
  MAINTAINERS: Add bits.h to the BITMAP API record
  MAINTAINERS: Add bitfield.h to the BITMAP API record

 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

-- 
2.40.0.1.gaa8946217a0b


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v1 1/2] MAINTAINERS: Add bits.h to the BITMAP API record
  2023-06-21 16:26 [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Andy Shevchenko
@ 2023-06-21 16:26 ` Andy Shevchenko
  2023-06-21 16:26 ` [PATCH v1 2/2] MAINTAINERS: Add bitfield.h " Andy Shevchenko
  2023-06-21 18:07 ` [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Yury Norov
  2 siblings, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2023-06-21 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: Yury Norov, Rasmus Villemoes, Andy Shevchenko

From time to time changes are tending to go to the bits.h
headers while it may affect other bit operataions. Add
the bits.h to the BITMAP API record.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 MAINTAINERS | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 210285042dcd..34553d2136ea 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3592,9 +3592,11 @@ R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 R:	Rasmus Villemoes <linux@rasmusvillemoes.dk>
 S:	Maintained
 F:	include/linux/bitmap.h
+F:	include/linux/bits.h
 F:	include/linux/cpumask.h
 F:	include/linux/find.h
 F:	include/linux/nodemask.h
+F:	include/vdso/bits.h
 F:	lib/bitmap.c
 F:	lib/cpumask.c
 F:	lib/cpumask_kunit.c
@@ -3602,7 +3604,9 @@ F:	lib/find_bit.c
 F:	lib/find_bit_benchmark.c
 F:	lib/test_bitmap.c
 F:	tools/include/linux/bitmap.h
+F:	tools/include/linux/bits.h
 F:	tools/include/linux/find.h
+F:	tools/include/vdso/bits.h
 F:	tools/lib/bitmap.c
 F:	tools/lib/find_bit.c
 
-- 
2.40.0.1.gaa8946217a0b


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v1 2/2] MAINTAINERS: Add bitfield.h to the BITMAP API record
  2023-06-21 16:26 [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Andy Shevchenko
  2023-06-21 16:26 ` [PATCH v1 1/2] MAINTAINERS: Add bits.h to the BITMAP API record Andy Shevchenko
@ 2023-06-21 16:26 ` Andy Shevchenko
  2023-06-21 18:07 ` [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Yury Norov
  2 siblings, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2023-06-21 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: Yury Norov, Rasmus Villemoes, Andy Shevchenko

From time to time changes are tending to go to bitfield.h
header while it may affect other bit operataions. Add
bitfiled.h to the BITMAP API record.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 34553d2136ea..758443559d26 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3591,6 +3591,7 @@ M:	Yury Norov <yury.norov@gmail.com>
 R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 R:	Rasmus Villemoes <linux@rasmusvillemoes.dk>
 S:	Maintained
+F:	include/linux/bitfield.h
 F:	include/linux/bitmap.h
 F:	include/linux/bits.h
 F:	include/linux/cpumask.h
@@ -3603,6 +3604,7 @@ F:	lib/cpumask_kunit.c
 F:	lib/find_bit.c
 F:	lib/find_bit_benchmark.c
 F:	lib/test_bitmap.c
+F:	tools/include/linux/bitfield.h
 F:	tools/include/linux/bitmap.h
 F:	tools/include/linux/bits.h
 F:	tools/include/linux/find.h
-- 
2.40.0.1.gaa8946217a0b


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS
  2023-06-21 16:26 [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Andy Shevchenko
  2023-06-21 16:26 ` [PATCH v1 1/2] MAINTAINERS: Add bits.h to the BITMAP API record Andy Shevchenko
  2023-06-21 16:26 ` [PATCH v1 2/2] MAINTAINERS: Add bitfield.h " Andy Shevchenko
@ 2023-06-21 18:07 ` Yury Norov
  2023-06-22  9:07   ` Andy Shevchenko
  2 siblings, 1 reply; 6+ messages in thread
From: Yury Norov @ 2023-06-21 18:07 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: linux-kernel, Rasmus Villemoes, Lucas De Marchi

On Wed, Jun 21, 2023 at 07:26:24PM +0300, Andy Shevchenko wrote:
> During discussion
> https://lore.kernel.org/r/20230509051403.2748545-1-lucas.demarchi@intel.com
> I was started wondering why neither Yury nor Rasmus commented on that.
> 
> Hence I wanted to add some headers to the bitmap API MAINTAINERS for
> watching the changes made elsewhere are they may correlate with bit
> operations.
> 
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>

Thanks Andy!

Acked-by: Yury Norov <yury.norov@gmail.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS
  2023-06-21 18:07 ` [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Yury Norov
@ 2023-06-22  9:07   ` Andy Shevchenko
  2023-06-22  9:51     ` Rasmus Villemoes
  0 siblings, 1 reply; 6+ messages in thread
From: Andy Shevchenko @ 2023-06-22  9:07 UTC (permalink / raw)
  To: Yury Norov; +Cc: linux-kernel, Rasmus Villemoes, Lucas De Marchi

On Wed, Jun 21, 2023 at 11:07:08AM -0700, Yury Norov wrote:
> On Wed, Jun 21, 2023 at 07:26:24PM +0300, Andy Shevchenko wrote:
> > During discussion
> > https://lore.kernel.org/r/20230509051403.2748545-1-lucas.demarchi@intel.com
> > I was started wondering why neither Yury nor Rasmus commented on that.
> > 
> > Hence I wanted to add some headers to the bitmap API MAINTAINERS for
> > watching the changes made elsewhere are they may correlate with bit
> > operations.
> > 
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> 
> Thanks Andy!
> 
> Acked-by: Yury Norov <yury.norov@gmail.com>

Thank you! I assume you take them.

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS
  2023-06-22  9:07   ` Andy Shevchenko
@ 2023-06-22  9:51     ` Rasmus Villemoes
  0 siblings, 0 replies; 6+ messages in thread
From: Rasmus Villemoes @ 2023-06-22  9:51 UTC (permalink / raw)
  To: Andy Shevchenko, Yury Norov; +Cc: linux-kernel, Lucas De Marchi

On 22/06/2023 11.07, Andy Shevchenko wrote:
> On Wed, Jun 21, 2023 at 11:07:08AM -0700, Yury Norov wrote:
>>
>> Acked-by: Yury Norov <yury.norov@gmail.com>
> 
> Thank you! I assume you take them.

Yeah, it would make sense for Yury to take them, and then you can
include my ack as well.

Rasmus


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-06-22  9:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-21 16:26 [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Andy Shevchenko
2023-06-21 16:26 ` [PATCH v1 1/2] MAINTAINERS: Add bits.h to the BITMAP API record Andy Shevchenko
2023-06-21 16:26 ` [PATCH v1 2/2] MAINTAINERS: Add bitfield.h " Andy Shevchenko
2023-06-21 18:07 ` [PATCH v1 0/2] bimap API: Add couple of files to MAINTAINERS Yury Norov
2023-06-22  9:07   ` Andy Shevchenko
2023-06-22  9:51     ` Rasmus Villemoes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox