linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: Add CPU HOTPLUG entry
@ 2023-06-12  9:04 Thomas Gleixner
  2023-06-12 15:14 ` Randy Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Thomas Gleixner @ 2023-06-12  9:04 UTC (permalink / raw)
  To: LKML; +Cc: Linus Torvalds, Andrew Morton, Peter Zijlstra

Document the status quo and add myself and Peter as CPU hotplug
maintainers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 MAINTAINERS |   12 ++++++++++++
 1 file changed, 12 insertions(+)

--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5356,6 +5356,18 @@ F:	Documentation/driver-api/pm/cpuidle.r
 F:	drivers/cpuidle/
 F:	include/linux/cpuidle.h
 
+CPU HOTPLUG
+M:	Thomas Gleixner <tglx@linutronix.de>
+M:	Peter Zijlstra <peterz@infradead.org>
+L:	linux-kernel@vger.kernel.org
+S:	Maintained
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
+F:	kernel/cpu.c
+F:	kernel/smpboot.*
+F:	include/linux/cpu.h
+F:	include/linux/cpuhotplug.h
+F:	include/linux/smpboot.h
+
 CPU POWER MONITORING SUBSYSTEM
 M:	Thomas Renninger <trenn@suse.com>
 M:	Shuah Khan <shuah@kernel.org>

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

* Re: [PATCH] MAINTAINERS: Add CPU HOTPLUG entry
  2023-06-12  9:04 [PATCH] MAINTAINERS: Add CPU HOTPLUG entry Thomas Gleixner
@ 2023-06-12 15:14 ` Randy Dunlap
  2023-06-12 15:33   ` Thomas Gleixner
  2023-06-13  7:47 ` Peter Zijlstra
  2023-06-13  8:02 ` [tip: smp/core] " tip-bot2 for Thomas Gleixner
  2 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2023-06-12 15:14 UTC (permalink / raw)
  To: Thomas Gleixner, LKML; +Cc: Linus Torvalds, Andrew Morton, Peter Zijlstra

Hi Thomas,

On 6/12/23 02:04, Thomas Gleixner wrote:
> Document the status quo and add myself and Peter as CPU hotplug
> maintainers.
> 
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> ---
>  MAINTAINERS |   12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -5356,6 +5356,18 @@ F:	Documentation/driver-api/pm/cpuidle.r
>  F:	drivers/cpuidle/
>  F:	include/linux/cpuidle.h
>  
> +CPU HOTPLUG
> +M:	Thomas Gleixner <tglx@linutronix.de>
> +M:	Peter Zijlstra <peterz@infradead.org>
> +L:	linux-kernel@vger.kernel.org
> +S:	Maintained
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
> +F:	kernel/cpu.c
> +F:	kernel/smpboot.*
> +F:	include/linux/cpu.h
> +F:	include/linux/cpuhotplug.h
> +F:	include/linux/smpboot.h
> +

The new entry should be before CPU IDLE, not after it.
Otherwise LGTM, thanks for adding this. I was looking for it recently.

Acked-by: Randy Dunlap <rdunlap@infradead.org>

>  CPU POWER MONITORING SUBSYSTEM
>  M:	Thomas Renninger <trenn@suse.com>
>  M:	Shuah Khan <shuah@kernel.org>

-- 
~Randy

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

* Re: [PATCH] MAINTAINERS: Add CPU HOTPLUG entry
  2023-06-12 15:14 ` Randy Dunlap
@ 2023-06-12 15:33   ` Thomas Gleixner
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Gleixner @ 2023-06-12 15:33 UTC (permalink / raw)
  To: Randy Dunlap, LKML; +Cc: Linus Torvalds, Andrew Morton, Peter Zijlstra

On Mon, Jun 12 2023 at 08:14, Randy Dunlap wrote:
>> +CPU HOTPLUG
>> +M:	Thomas Gleixner <tglx@linutronix.de>
>> +M:	Peter Zijlstra <peterz@infradead.org>
>> +L:	linux-kernel@vger.kernel.org
>> +S:	Maintained
>> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
>> +F:	kernel/cpu.c
>> +F:	kernel/smpboot.*
>> +F:	include/linux/cpu.h
>> +F:	include/linux/cpuhotplug.h
>> +F:	include/linux/smpboot.h
>> +
>
> The new entry should be before CPU IDLE, not after it.

Duh. I clearly need a refresh course at primary school.

> Otherwise LGTM, thanks for adding this. I was looking for it recently.
>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>


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

* Re: [PATCH] MAINTAINERS: Add CPU HOTPLUG entry
  2023-06-12  9:04 [PATCH] MAINTAINERS: Add CPU HOTPLUG entry Thomas Gleixner
  2023-06-12 15:14 ` Randy Dunlap
@ 2023-06-13  7:47 ` Peter Zijlstra
  2023-06-13  8:02 ` [tip: smp/core] " tip-bot2 for Thomas Gleixner
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Zijlstra @ 2023-06-13  7:47 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, Linus Torvalds, Andrew Morton

On Mon, Jun 12, 2023 at 11:04:39AM +0200, Thomas Gleixner wrote:
> Document the status quo and add myself and Peter as CPU hotplug
> maintainers.
> 
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

Heh, what's a few more emails.. ;-)

Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>

> ---
>  MAINTAINERS |   12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -5356,6 +5356,18 @@ F:	Documentation/driver-api/pm/cpuidle.r
>  F:	drivers/cpuidle/
>  F:	include/linux/cpuidle.h
>  
> +CPU HOTPLUG
> +M:	Thomas Gleixner <tglx@linutronix.de>
> +M:	Peter Zijlstra <peterz@infradead.org>
> +L:	linux-kernel@vger.kernel.org
> +S:	Maintained
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
> +F:	kernel/cpu.c
> +F:	kernel/smpboot.*
> +F:	include/linux/cpu.h
> +F:	include/linux/cpuhotplug.h
> +F:	include/linux/smpboot.h
> +
>  CPU POWER MONITORING SUBSYSTEM
>  M:	Thomas Renninger <trenn@suse.com>
>  M:	Shuah Khan <shuah@kernel.org>

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

* [tip: smp/core] MAINTAINERS: Add CPU HOTPLUG entry
  2023-06-12  9:04 [PATCH] MAINTAINERS: Add CPU HOTPLUG entry Thomas Gleixner
  2023-06-12 15:14 ` Randy Dunlap
  2023-06-13  7:47 ` Peter Zijlstra
@ 2023-06-13  8:02 ` tip-bot2 for Thomas Gleixner
  2 siblings, 0 replies; 5+ messages in thread
From: tip-bot2 for Thomas Gleixner @ 2023-06-13  8:02 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Thomas Gleixner, Peter Zijlstra (Intel), Randy Dunlap, x86,
	linux-kernel

The following commit has been merged into the smp/core branch of tip:

Commit-ID:     60be49bdf1d4ddb9e2deb7aa718d5b8bc167ee4e
Gitweb:        https://git.kernel.org/tip/60be49bdf1d4ddb9e2deb7aa718d5b8bc167ee4e
Author:        Thomas Gleixner <tglx@linutronix.de>
AuthorDate:    Mon, 12 Jun 2023 11:04:39 +02:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Tue, 13 Jun 2023 09:57:18 +02:00

MAINTAINERS: Add CPU HOTPLUG entry

Document the status quo and add myself and Peter as CPU hotplug
maintainers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/87o7ll6ogo.ffs@tglx

---
 MAINTAINERS | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index e0ad886..273f980 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5341,6 +5341,18 @@ F:	include/linux/sched/cpufreq.h
 F:	kernel/sched/cpufreq*.c
 F:	tools/testing/selftests/cpufreq/
 
+CPU HOTPLUG
+M:	Thomas Gleixner <tglx@linutronix.de>
+M:	Peter Zijlstra <peterz@infradead.org>
+L:	linux-kernel@vger.kernel.org
+S:	Maintained
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
+F:	kernel/cpu.c
+F:	kernel/smpboot.*
+F:	include/linux/cpu.h
+F:	include/linux/cpuhotplug.h
+F:	include/linux/smpboot.h
+
 CPU IDLE TIME MANAGEMENT FRAMEWORK
 M:	"Rafael J. Wysocki" <rafael@kernel.org>
 M:	Daniel Lezcano <daniel.lezcano@linaro.org>

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

end of thread, other threads:[~2023-06-13  8:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-12  9:04 [PATCH] MAINTAINERS: Add CPU HOTPLUG entry Thomas Gleixner
2023-06-12 15:14 ` Randy Dunlap
2023-06-12 15:33   ` Thomas Gleixner
2023-06-13  7:47 ` Peter Zijlstra
2023-06-13  8:02 ` [tip: smp/core] " tip-bot2 for Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).