All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Josh Poimboeuf <jpoimboe@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "jgross@suse.com" <jgross@suse.com>,
	"richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"ink@jurassic.park.msu.ru" <ink@jurassic.park.msu.ru>,
	"mattst88@gmail.com" <mattst88@gmail.com>,
	"linux-alpha@vger.kernel.org" <linux-alpha@vger.kernel.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
	"will@kernel.org" <will@kernel.org>,
	"guoren@kernel.org" <guoren@kernel.org>,
	"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
	"linux-ia64@vger.kernel.org" <linux-ia64@vger.kernel.org>,
	"chenhuacai@kernel.org" <chenhuacai@kernel.org>,
	"kernel@xen0n.name" <kernel@xen0n.name>,
	"loongarch@lists.linux.dev" <loongarch@lists.linux.dev>,
	"f.fainelli@gmail.com" <f.fainelli@gmail.com>,
	"bcm-kernel-feedback-list@broadcom.com"
	<bcm-kernel-feedback-list@broadcom.com>,
	"tsbogend@alpha.franken.de" <tsbogend@alpha.franken.de>,
	"linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"jiaxun.yang@flygoat.com" <jiaxun.yang@flygoat.com>,
	"mpe@ellerman.id.au" <mpe@ellerman.id.au>,
	"npiggin@gmail.com" <npiggin@gmail.com>,
	"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
	"ysato@users.sourceforge.jp" <ysato@users.sourceforge.jp>,
	"dalias@libc.org" <dalias@libc.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>,
	"davem@davemloft.net" <davem@davemloft.net>,
	"sparclinux@vger.kernel.org" <sparclinux@vger.kernel.org>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"bp@alien8.de" <bp@alien8.de>,
	"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"hpa@zytor.com" <hpa@zytor.com>,
	"chris@zankel.net" <chris@zankel.net>,
	"jcmvbkbc@gmail.com" <jcmvbkbc@gmail.com>,
	"linux-xtensa@linux-xtensa.org" <linux-xtensa@linux-xtensa.org>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"juri.lelli@redhat.com" <juri.lelli@redhat.com>,
	"vincent.guittot@linaro.org" <vincent.guittot@linaro.org>,
	"dietmar.eggemann@arm.com" <dietmar.eggemann@arm.com>,
	"rostedt@goodmis.org" <rostedt@goodmis.org>,
	"bsegall@google.com" <bsegall@google.com>,
	"mgorman@suse.de" <mgorman@suse.de>,
	"bristot@redhat.com" <bristot@redhat.com>,
	"vschneid@redhat.com" <vschneid@redhat.com>,
	"paulmck@kernel.org" <paulmck@kernel.org>
Subject: Re: [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn
Date: Tue, 14 Feb 2023 07:19:27 +0000	[thread overview]
Message-ID: <3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu> (raw)
In-Reply-To: <b6b2141f832d8cd8ade65f190d04b011cda5f9bb.1676358308.git.jpoimboe@kernel.org>



Le 14/02/2023 à 08:05, Josh Poimboeuf a écrit :
> start_secondary_resume() doesn't return.  Annotate it as such.  By
> extension this also makes arch_cpu_idle_dead() noreturn.
> 
> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>

Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>

> ---
>   arch/powerpc/include/asm/smp.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/include/asm/smp.h b/arch/powerpc/include/asm/smp.h
> index f63505d74932..cfd42ca8765c 100644
> --- a/arch/powerpc/include/asm/smp.h
> +++ b/arch/powerpc/include/asm/smp.h
> @@ -66,7 +66,7 @@ void start_secondary(void *unused);
>   extern int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern void smp_send_debugger_break(void);
> -extern void start_secondary_resume(void);
> +extern void __noreturn start_secondary_resume(void);

Would have been a good opportunity to drop the pointless 'extern' keyword.

Checkpatch reports:

CHECK: extern prototypes should be avoided in .h files
#19: FILE: arch/powerpc/include/asm/smp.h:69:
+extern void __noreturn start_secondary_resume(void);


>   extern void smp_generic_give_timebase(void);
>   extern void smp_generic_take_timebase(void);
>   

WARNING: multiple messages have this Message-ID (diff)
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Josh Poimboeuf <jpoimboe@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "jgross@suse.com" <jgross@suse.com>,
	"richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"ink@jurassic.park.msu.ru" <ink@jurassic.park.msu.ru>,
	"mattst88@gmail.com" <mattst88@gmail.com>,
	"linux-alpha@vger.kernel.org" <linux-alpha@vger.kernel.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
	"will@kernel.org" <will@kernel.org>,
	"guoren@kernel.org" <guoren@kernel.org>,
	"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
	"linux-ia64@vger.kernel.org" <linux-ia64@vger.kernel.org>,
	"chenhuacai@kernel.org" <chenhuacai@kernel.org>,
	"kernel@xen0n.name" <kernel@xen0n.name>,
	"loongarch@lists.linux.dev" <loongarch@lists.linux.dev>,
	"f.fainelli@gmail.com" <f.fainelli@gmail.com>,
	"bcm-kernel-feedback-list@broadcom.com"
	<bcm-kernel-feedback-list@broadcom.com>,
	"tsbogend@alpha.franken.de" <tsbogend@alpha.franken.de>,
	"linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"jiaxun.yang@flygoat.com" <jiaxun.yang@flygoat.com>,
	"mpe@ellerman.id.au" <mpe@ellerman.id.au>,
	"npiggin@gmail.com" <npiggin@gmail.com>,
	"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
	"ysato@users.sourceforge.jp" <ysato@users.sourceforge.jp>,
	"dalias@libc.org" <dalias@libc.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>,
	"davem@davemloft.net" <davem@davemloft.net>,
	"sparclinux@vger.kernel.org" <sparclinux@vger.kernel.org>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"bp@alien8.de" <bp@alien8.de>,
	"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"hpa@zytor.com" <hpa@zytor.com>,
	"chris@zankel.net" <chris@zankel.net>,
	"jcmvbkbc@gmail.com" <jcmvbkbc@gmail.com>,
	"linux-xtensa@linux-xtensa.org" <linux-xtensa@linux-xtensa.org>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"juri.lelli@redhat.com" <juri.lelli@redhat.com>,
	"vincent.guittot@linaro.org" <vincent.guittot@linaro.org>,
	"dietmar.eggemann@arm.com" <dietmar.eggemann@arm.com>,
	"rostedt@goodmis.org" <rostedt@goodmis.org>,
	"bsegall@google.com" <bsegall@google.com>,
	"mgorman@suse.de" <mgorman@suse.de>,
	"bristot@redhat.com" <bristot@redhat.com>,
	"vschneid@redhat.com" <vschneid@redhat.com>,
	"paulmck@kernel.org" <paulmck@kernel.org>
Subject: Re: [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn
Date: Tue, 14 Feb 2023 07:19:27 +0000	[thread overview]
Message-ID: <3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu> (raw)
In-Reply-To: <b6b2141f832d8cd8ade65f190d04b011cda5f9bb.1676358308.git.jpoimboe@kernel.org>



Le 14/02/2023 à 08:05, Josh Poimboeuf a écrit :
> start_secondary_resume() doesn't return.  Annotate it as such.  By
> extension this also makes arch_cpu_idle_dead() noreturn.
> 
> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>

Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>

> ---
>   arch/powerpc/include/asm/smp.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/include/asm/smp.h b/arch/powerpc/include/asm/smp.h
> index f63505d74932..cfd42ca8765c 100644
> --- a/arch/powerpc/include/asm/smp.h
> +++ b/arch/powerpc/include/asm/smp.h
> @@ -66,7 +66,7 @@ void start_secondary(void *unused);
>   extern int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern void smp_send_debugger_break(void);
> -extern void start_secondary_resume(void);
> +extern void __noreturn start_secondary_resume(void);

Would have been a good opportunity to drop the pointless 'extern' keyword.

Checkpatch reports:

CHECK: extern prototypes should be avoided in .h files
#19: FILE: arch/powerpc/include/asm/smp.h:69:
+extern void __noreturn start_secondary_resume(void);


>   extern void smp_generic_give_timebase(void);
>   extern void smp_generic_take_timebase(void);
>   
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Josh Poimboeuf <jpoimboe@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "juri.lelli@redhat.com" <juri.lelli@redhat.com>,
	"dalias@libc.org" <dalias@libc.org>,
	"linux-ia64@vger.kernel.org" <linux-ia64@vger.kernel.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
	"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"jiaxun.yang@flygoat.com" <jiaxun.yang@flygoat.com>,
	"bsegall@google.com" <bsegall@google.com>,
	"jcmvbkbc@gmail.com" <jcmvbkbc@gmail.com>,
	"guoren@kernel.org" <guoren@kernel.org>,
	"hpa@zytor.com" <hpa@zytor.com>,
	"sparclinux@vger.kernel.org" <sparclinux@vger.kernel.org>,
	"kernel@xen0n.name" <kernel@xen0n.name>,
	"will@kernel.org" <will@kernel.org>,
	"vschneid@redhat.com" <vschneid@redhat.com>,
	"f.fainelli@gmail.com" <f.fainelli@gmail.com>,
	"vincent.guittot@linaro.org" <vincent.guittot@linaro.org>,
	"ysato@users.sourceforge.jp" <ysato@users.sourceforge.jp>,
	"chenhuacai@kernel.org" <chenhuacai@ke rnel.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"bcm-kernel-feedback-list@broadcom.com"
	<bcm-kernel-feedback-list@broadcom.com>,
	"mgorman@suse.de" <mgorman@suse.de>,
	"mattst88@gmail.com" <mattst88@gmail.com>,
	"linux-xtensa@linux-xtensa.org" <linux-xtensa@linux-xtensa.org>,
	"paulmck@kernel.org" <paulmck@kernel.org>,
	"richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"npiggin@gmail.com" <npiggin@gmail.com>,
	"ink@jurassic.park.msu.ru" <ink@jurassic.park.msu.ru>,
	"rostedt@goodmis.org" <rostedt@goodmis.org>,
	"loongarch@lists.linux.dev" <loongarch@lists.linux.dev>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"dietmar.eggemann@arm.com" <dietmar.eggemann@arm.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"jgross@suse.com" <jgross@suse.com>,
	"chris@zankel.net" <chris@zankel.net>,
	"tsbogend@alpha.franken.de" <tsbogend@alpha.franken.de>,
	"bristot@redhat.com" <bristot@redhat.com>,
	"linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"linux-alpha@vger.kernel.org" <linux-alpha@vger.kernel.org>,
	"bp@alien8.de" <bp@alien8.de>,
	"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
	"davem@davemloft.net" <davem@davemloft.net>
Subject: Re: [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn
Date: Tue, 14 Feb 2023 07:19:27 +0000	[thread overview]
Message-ID: <3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu> (raw)
In-Reply-To: <b6b2141f832d8cd8ade65f190d04b011cda5f9bb.1676358308.git.jpoimboe@kernel.org>



Le 14/02/2023 à 08:05, Josh Poimboeuf a écrit :
> start_secondary_resume() doesn't return.  Annotate it as such.  By
> extension this also makes arch_cpu_idle_dead() noreturn.
> 
> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>

Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>

> ---
>   arch/powerpc/include/asm/smp.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/include/asm/smp.h b/arch/powerpc/include/asm/smp.h
> index f63505d74932..cfd42ca8765c 100644
> --- a/arch/powerpc/include/asm/smp.h
> +++ b/arch/powerpc/include/asm/smp.h
> @@ -66,7 +66,7 @@ void start_secondary(void *unused);
>   extern int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern void smp_send_debugger_break(void);
> -extern void start_secondary_resume(void);
> +extern void __noreturn start_secondary_resume(void);

Would have been a good opportunity to drop the pointless 'extern' keyword.

Checkpatch reports:

CHECK: extern prototypes should be avoided in .h files
#19: FILE: arch/powerpc/include/asm/smp.h:69:
+extern void __noreturn start_secondary_resume(void);


>   extern void smp_generic_give_timebase(void);
>   extern void smp_generic_take_timebase(void);
>   

WARNING: multiple messages have this Message-ID (diff)
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Josh Poimboeuf <jpoimboe@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "jgross@suse.com" <jgross@suse.com>,
	"richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"ink@jurassic.park.msu.ru" <ink@jurassic.park.msu.ru>,
	"mattst88@gmail.com" <mattst88@gmail.com>,
	"linux-alpha@vger.kernel.org" <linux-alpha@vger.kernel.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
	"will@kernel.org" <will@kernel.org>,
	"guoren@kernel.org" <guoren@kernel.org>,
	"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
	"linux-ia64@vger.kernel.org" <linux-ia64@vger.kernel.org>,
	"chenhuacai@kernel.org" <chenhuacai@kernel.org>,
	"kernel@xen0n.name" <kernel@xen0n.name>,
	"loongarch@lists.linux.dev" <loongarch@lists.linux.dev>,
	"f.fainelli@gmail.com" <f.fainelli@gmail.com>,
	"bcm-kernel-feedback-list@broadcom.com"
	<bcm-kernel-feedback-list@broadcom.com>,
	"tsbogend@alpha.franken.de" <tsbogend@alpha.franken.de>,
	"linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"jiaxun.yang@flygoat.com" <jiaxun.yang@flygoat.com>,
	"mpe@ellerman.id.au" <mpe@ellerman.id.au>,
	"npiggin@gmail.com" <npiggin@gmail.com>,
	"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
	"ysato@users.sourceforge.jp" <ysato@users.sourceforge.jp>,
	"dalias@libc.org" <dalias@libc.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>,
	"davem@davemloft.net" <davem@davemloft.net>,
	"sparclinux@vger.kernel.org" <sparclinux@vger.kernel.org>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"bp@alien8.de" <bp@alien8.de>,
	"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"hpa@zytor.com" <hpa@zytor.com>,
	"chris@zankel.net" <chris@zankel.net>,
	"jcmvbkbc@gmail.com" <jcmvbkbc@gmail.com>,
	"linux-xtensa@linux-xtensa.org" <linux-xtensa@linux-xtensa.org>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"juri.lelli@redhat.com" <juri.lelli@redhat.com>,
	"vincent.guittot@linaro.org" <vincent.guittot@linaro.org>,
	"dietmar.eggemann@arm.com" <dietmar.eggemann@arm.com>,
	"rostedt@goodmis.org" <rostedt@goodmis.org>,
	"bsegall@google.com" <bsegall@google.com>,
	"mgorman@suse.de" <mgorman@suse.de>,
	"bristot@redhat.com" <bristot@redhat.com>,
	"vschneid@redhat.com" <vschneid@redhat.com>,
	"paulmck@kernel.org" <paulmck@kernel.org>
Subject: Re: [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn
Date: Tue, 14 Feb 2023 07:19:27 +0000	[thread overview]
Message-ID: <3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu> (raw)
In-Reply-To: <b6b2141f832d8cd8ade65f190d04b011cda5f9bb.1676358308.git.jpoimboe@kernel.org>

DQoNCkxlIDE0LzAyLzIwMjMgw6AgMDg6MDUsIEpvc2ggUG9pbWJvZXVmIGEgw6ljcml0wqA6DQo+
IHN0YXJ0X3NlY29uZGFyeV9yZXN1bWUoKSBkb2Vzbid0IHJldHVybi4gIEFubm90YXRlIGl0IGFz
IHN1Y2guICBCeQ0KPiBleHRlbnNpb24gdGhpcyBhbHNvIG1ha2VzIGFyY2hfY3B1X2lkbGVfZGVh
ZCgpIG5vcmV0dXJuLg0KPiANCj4gQWNrZWQtYnk6IE1pY2hhZWwgRWxsZXJtYW4gPG1wZUBlbGxl
cm1hbi5pZC5hdT4gKHBvd2VycGMpDQo+IFNpZ25lZC1vZmYtYnk6IEpvc2ggUG9pbWJvZXVmIDxq
cG9pbWJvZUBrZXJuZWwub3JnPg0KDQpSZXZpZXdlZC1ieTogQ2hyaXN0b3BoZSBMZXJveSA8Y2hy
aXN0b3BoZS5sZXJveUBjc2dyb3VwLmV1Pg0KDQo+IC0tLQ0KPiAgIGFyY2gvcG93ZXJwYy9pbmNs
dWRlL2FzbS9zbXAuaCB8IDIgKy0NCj4gICAxIGZpbGUgY2hhbmdlZCwgMSBpbnNlcnRpb24oKyks
IDEgZGVsZXRpb24oLSkNCj4gDQo+IGRpZmYgLS1naXQgYS9hcmNoL3Bvd2VycGMvaW5jbHVkZS9h
c20vc21wLmggYi9hcmNoL3Bvd2VycGMvaW5jbHVkZS9hc20vc21wLmgNCj4gaW5kZXggZjYzNTA1
ZDc0OTMyLi5jZmQ0MmNhODc2NWMgMTAwNjQ0DQo+IC0tLSBhL2FyY2gvcG93ZXJwYy9pbmNsdWRl
L2FzbS9zbXAuaA0KPiArKysgYi9hcmNoL3Bvd2VycGMvaW5jbHVkZS9hc20vc21wLmgNCj4gQEAg
LTY2LDcgKzY2LDcgQEAgdm9pZCBzdGFydF9zZWNvbmRhcnkodm9pZCAqdW51c2VkKTsNCj4gICBl
eHRlcm4gaW50IHNtcF9zZW5kX25taV9pcGkoaW50IGNwdSwgdm9pZCAoKmZuKShzdHJ1Y3QgcHRf
cmVncyAqKSwgdTY0IGRlbGF5X3VzKTsNCj4gICBleHRlcm4gaW50IHNtcF9zZW5kX3NhZmVfbm1p
X2lwaShpbnQgY3B1LCB2b2lkICgqZm4pKHN0cnVjdCBwdF9yZWdzICopLCB1NjQgZGVsYXlfdXMp
Ow0KPiAgIGV4dGVybiB2b2lkIHNtcF9zZW5kX2RlYnVnZ2VyX2JyZWFrKHZvaWQpOw0KPiAtZXh0
ZXJuIHZvaWQgc3RhcnRfc2Vjb25kYXJ5X3Jlc3VtZSh2b2lkKTsNCj4gK2V4dGVybiB2b2lkIF9f
bm9yZXR1cm4gc3RhcnRfc2Vjb25kYXJ5X3Jlc3VtZSh2b2lkKTsNCg0KV291bGQgaGF2ZSBiZWVu
IGEgZ29vZCBvcHBvcnR1bml0eSB0byBkcm9wIHRoZSBwb2ludGxlc3MgJ2V4dGVybicga2V5d29y
ZC4NCg0KQ2hlY2twYXRjaCByZXBvcnRzOg0KDQpDSEVDSzogZXh0ZXJuIHByb3RvdHlwZXMgc2hv
dWxkIGJlIGF2b2lkZWQgaW4gLmggZmlsZXMNCiMxOTogRklMRTogYXJjaC9wb3dlcnBjL2luY2x1
ZGUvYXNtL3NtcC5oOjY5Og0KK2V4dGVybiB2b2lkIF9fbm9yZXR1cm4gc3RhcnRfc2Vjb25kYXJ5
X3Jlc3VtZSh2b2lkKTsNCg0KDQo+ICAgZXh0ZXJuIHZvaWQgc21wX2dlbmVyaWNfZ2l2ZV90aW1l
YmFzZSh2b2lkKTsNCj4gICBleHRlcm4gdm9pZCBzbXBfZ2VuZXJpY190YWtlX3RpbWViYXNlKHZv
aWQpOw0KPiAgIA0K

WARNING: multiple messages have this Message-ID (diff)
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Josh Poimboeuf <jpoimboe@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "jgross@suse.com" <jgross@suse.com>,
	"richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"ink@jurassic.park.msu.ru" <ink@jurassic.park.msu.ru>,
	"mattst88@gmail.com" <mattst88@gmail.com>,
	"linux-alpha@vger.kernel.org" <linux-alpha@vger.kernel.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
	"will@kernel.org" <will@kernel.org>,
	"guoren@kernel.org" <guoren@kernel.org>,
	"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
	"linux-ia64@vger.kernel.org" <linux-ia64@vger.kernel.org>,
	"chenhuacai@kernel.org" <chenhuacai@kernel.org>,
	"kernel@xen0n.name" <kernel@xen0n.name>,
	"loongarch@lists.linux.dev" <loongarch@lists.linu>
Subject: Re: [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn
Date: Tue, 14 Feb 2023 07:19:27 +0000	[thread overview]
Message-ID: <3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu> (raw)
In-Reply-To: <b6b2141f832d8cd8ade65f190d04b011cda5f9bb.1676358308.git.jpoimboe@kernel.org>



Le 14/02/2023 à 08:05, Josh Poimboeuf a écrit :
> start_secondary_resume() doesn't return.  Annotate it as such.  By
> extension this also makes arch_cpu_idle_dead() noreturn.
> 
> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>

Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>

> ---
>   arch/powerpc/include/asm/smp.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/include/asm/smp.h b/arch/powerpc/include/asm/smp.h
> index f63505d74932..cfd42ca8765c 100644
> --- a/arch/powerpc/include/asm/smp.h
> +++ b/arch/powerpc/include/asm/smp.h
> @@ -66,7 +66,7 @@ void start_secondary(void *unused);
>   extern int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
>   extern void smp_send_debugger_break(void);
> -extern void start_secondary_resume(void);
> +extern void __noreturn start_secondary_resume(void);

Would have been a good opportunity to drop the pointless 'extern' keyword.

Checkpatch reports:

CHECK: extern prototypes should be avoided in .h files
#19: FILE: arch/powerpc/include/asm/smp.h:69:
+extern void __noreturn start_secondary_resume(void);


>   extern void smp_generic_give_timebase(void);
>   extern void smp_generic_take_timebase(void);
>   

  reply	other threads:[~2023-02-14  7:19 UTC|newest]

Thread overview: 289+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-14  7:05 [PATCH v2 00/24] cpu,sched: Mark arch_cpu_idle_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05 ` Josh Poimboeuf
2023-02-14  7:05 ` Josh Poimboeuf
2023-02-14  7:05 ` Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 01/24] alpha/cpu: Expose arch_cpu_idle_dead()'s prototype declaration Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 02/24] alpha/cpu: Make sure arch_cpu_idle_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 03/24] arm/cpu: " Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14 11:15   ` Russell King (Oracle)
2023-02-14 11:15     ` Russell King (Oracle)
2023-02-14 11:15     ` Russell King (Oracle)
2023-02-14 11:15     ` Russell King (Oracle)
2023-02-14 18:39     ` Josh Poimboeuf
2023-02-14 18:39       ` Josh Poimboeuf
2023-02-14 18:39       ` Josh Poimboeuf
2023-02-14 18:39       ` Josh Poimboeuf
2023-02-14 18:39       ` Josh Poimboeuf
2023-02-14 22:01       ` Russell King (Oracle)
2023-02-14 22:01         ` Russell King (Oracle)
2023-02-14 22:01         ` Russell King (Oracle)
2023-02-14 22:01         ` Russell King (Oracle)
2023-02-16 18:38         ` [PATCH v2.1 03/24] arm/cpu: Add unreachable() to arch_cpu_idle_dead() Josh Poimboeuf
2023-02-16 18:38           ` Josh Poimboeuf
2023-02-16 18:38           ` Josh Poimboeuf
2023-02-16 18:38           ` Josh Poimboeuf
2023-02-16 18:38           ` Josh Poimboeuf
2023-03-10 20:54           ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 04/24] arm64/cpu: Mark cpu_die() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  8:13   ` Philippe Mathieu-Daudé
2023-02-14  8:13     ` Philippe Mathieu-Daudé
2023-02-14  8:13     ` Philippe Mathieu-Daudé
2023-02-14  8:13     ` Philippe Mathieu-Daudé
2023-02-15 13:09     ` Mark Rutland
2023-02-15 13:09       ` Mark Rutland
2023-02-15 13:09       ` Mark Rutland
2023-02-15 13:09       ` Mark Rutland
2023-02-15 19:45       ` Josh Poimboeuf
2023-02-15 19:45         ` Josh Poimboeuf
2023-02-15 19:45         ` Josh Poimboeuf
2023-02-15 19:45         ` Josh Poimboeuf
2023-02-15 19:45         ` Josh Poimboeuf
2023-02-16 18:41         ` [PATCH v2.1 " Josh Poimboeuf
2023-02-16 18:41           ` Josh Poimboeuf
2023-02-16 18:41           ` Josh Poimboeuf
2023-02-16 18:41           ` Josh Poimboeuf
2023-02-16 18:41           ` Josh Poimboeuf
2023-03-02 10:55           ` Philippe Mathieu-Daudé
2023-03-02 10:55             ` Philippe Mathieu-Daudé
2023-03-02 10:55             ` Philippe Mathieu-Daudé
2023-03-02 10:55             ` Philippe Mathieu-Daudé
2023-03-02 10:55             ` Philippe Mathieu-Daudé
2023-03-10 20:54           ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 05/24] csky/cpu: Make sure arch_cpu_idle_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 06/24] ia64/cpu: Mark play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  8:07   ` Philippe Mathieu-Daudé
2023-02-14  8:07     ` Philippe Mathieu-Daudé
2023-02-14  8:07     ` Philippe Mathieu-Daudé
2023-02-14  8:07     ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 07/24] loongarch/cpu: Make sure play_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 08/24] loongarch/cpu: Mark play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  8:06   ` Philippe Mathieu-Daudé
2023-02-14  8:06     ` Philippe Mathieu-Daudé
2023-02-14  8:06     ` Philippe Mathieu-Daudé
2023-02-14  8:06     ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 09/24] mips/cpu: Expose play_dead()'s prototype definition Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:46   ` Philippe Mathieu-Daudé
2023-02-14  7:46     ` Philippe Mathieu-Daudé
2023-02-14  7:46     ` Philippe Mathieu-Daudé
2023-02-14  7:46     ` Philippe Mathieu-Daudé
2023-02-14 18:11     ` Josh Poimboeuf
2023-02-14 18:11       ` Josh Poimboeuf
2023-02-14 18:11       ` Josh Poimboeuf
2023-02-14 18:11       ` Josh Poimboeuf
2023-02-15  8:29       ` Philippe Mathieu-Daudé
2023-02-15  8:29         ` Philippe Mathieu-Daudé
2023-02-15  8:29         ` Philippe Mathieu-Daudé
2023-02-15  8:29         ` Philippe Mathieu-Daudé
2023-02-16 18:42         ` [PATCH v2.1 " Josh Poimboeuf
2023-02-16 18:42           ` Josh Poimboeuf
2023-02-16 18:42           ` Josh Poimboeuf
2023-02-16 18:42           ` Josh Poimboeuf
2023-03-01 18:16           ` Josh Poimboeuf
2023-03-01 18:16             ` Josh Poimboeuf
2023-03-01 18:16             ` Josh Poimboeuf
2023-03-01 18:16             ` Josh Poimboeuf
2023-03-02 10:54             ` Philippe Mathieu-Daudé
2023-03-02 10:54               ` Philippe Mathieu-Daudé
2023-03-02 10:54               ` Philippe Mathieu-Daudé
2023-03-02 10:54               ` Philippe Mathieu-Daudé
2023-03-10 20:54           ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 10/24] mips/cpu: Make sure play_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:50   ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 11/24] mips/cpu: Mark play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:50   ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-02-14  7:50     ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 12/24] powerpc/cpu: Mark start_secondary_resume() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:19   ` Christophe Leroy [this message]
2023-02-14  7:19     ` Christophe Leroy
2023-02-14  7:19     ` Christophe Leroy
2023-02-14  7:19     ` Christophe Leroy
2023-02-14  7:19     ` Christophe Leroy
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 13/24] sh/cpu: Make sure play_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:57   ` Philippe Mathieu-Daudé
2023-02-14  7:57   ` Philippe Mathieu-Daudé
2023-02-14  7:57     ` Philippe Mathieu-Daudé
2023-02-14  7:57     ` Philippe Mathieu-Daudé
2023-02-14 18:28     ` Josh Poimboeuf
2023-02-14 18:28       ` Josh Poimboeuf
2023-02-14 18:28       ` Josh Poimboeuf
2023-02-14 18:28       ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 14/24] sh/cpu: Mark play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 15/24] sh/cpu: Expose arch_cpu_idle_dead()'s prototype definition Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 16/24] sparc/cpu: Mark cpu_play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:52   ` Philippe Mathieu-Daudé
2023-02-14  7:52     ` Philippe Mathieu-Daudé
2023-02-14  7:52     ` Philippe Mathieu-Daudé
2023-02-14  7:52     ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 17/24] x86/cpu: Make sure play_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  8:05   ` Philippe Mathieu-Daudé
2023-02-14  8:05     ` Philippe Mathieu-Daudé
2023-02-14  8:05     ` Philippe Mathieu-Daudé
2023-02-14  8:05   ` Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 18/24] x86/cpu: Mark play_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 19/24] xtensa/cpu: Make sure cpu_die() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:55   ` Philippe Mathieu-Daudé
2023-02-14  7:55   ` Philippe Mathieu-Daudé
2023-02-14  7:55     ` Philippe Mathieu-Daudé
2023-02-14  7:55     ` Philippe Mathieu-Daudé
2023-02-14 18:23     ` Josh Poimboeuf
2023-02-14 18:23       ` Josh Poimboeuf
2023-02-14 18:23       ` Josh Poimboeuf
2023-02-14 18:23       ` Josh Poimboeuf
2023-02-14 19:29       ` Steven Rostedt
2023-02-14 19:29         ` Steven Rostedt
2023-02-14 19:29         ` Steven Rostedt
2023-02-14 19:29         ` Steven Rostedt
2023-02-14 19:48       ` Max Filippov
2023-02-14 19:48         ` Max Filippov
2023-02-14 19:48         ` Max Filippov
2023-02-14 19:48         ` Max Filippov
2023-02-14 20:19         ` Josh Poimboeuf
2023-02-14 20:19           ` Josh Poimboeuf
2023-02-14 20:19           ` Josh Poimboeuf
2023-02-14 20:19           ` Josh Poimboeuf
2023-02-14 20:19           ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 20/24] xtensa/cpu: Mark cpu_die() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14 12:47   ` Max Filippov
2023-02-14 12:47     ` Max Filippov
2023-02-14 12:47     ` Max Filippov
2023-02-14 12:47     ` Max Filippov
2023-02-14 12:47     ` Max Filippov
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 21/24] sched/idle: Make sure weak version of arch_cpu_idle_dead() doesn't return Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 22/24] objtool: Include weak functions in 'global_noreturns' check Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 23/24] init: Make arch_call_rest_init() and rest_init() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05 ` [PATCH v2 24/24] sched/idle: Mark arch_cpu_idle_dead() __noreturn Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-02-14  7:05   ` Josh Poimboeuf
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2023-02-14  8:38 ` [PATCH v2 25/24] x86/cpu: Expose arch_cpu_idle_dead()'s prototype definition Philippe Mathieu-Daudé
2023-03-10 20:54   ` [tip: objtool/core] " tip-bot2 for Philippe Mathieu-Daudé
2023-02-14  9:25 ` [PATCH v2 00/24] cpu,sched: Mark arch_cpu_idle_dead() __noreturn Philippe Mathieu-Daudé
2023-02-14  9:25   ` Philippe Mathieu-Daudé
2023-02-14  9:25   ` Philippe Mathieu-Daudé
2023-02-14 18:29   ` Josh Poimboeuf
2023-02-14 18:29     ` Josh Poimboeuf
2023-02-14 18:29     ` Josh Poimboeuf
2023-02-14 18:29     ` Josh Poimboeuf
2023-02-14  9:25 ` Philippe Mathieu-Daudé
2023-02-15 22:22 ` Paul E. McKenney
2023-02-15 22:22   ` Paul E. McKenney
2023-02-15 22:22   ` Paul E. McKenney
2023-02-15 22:22   ` Paul E. McKenney
2023-02-15 22:22   ` Paul E. McKenney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3a1be09c-b9fd-a473-0819-81a4ebdf34cc@csgroup.eu \
    --to=christophe.leroy@csgroup.eu \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=bp@alien8.de \
    --cc=bristot@redhat.com \
    --cc=bsegall@google.com \
    --cc=catalin.marinas@arm.com \
    --cc=chenhuacai@kernel.org \
    --cc=chris@zankel.net \
    --cc=dalias@libc.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=davem@davemloft.net \
    --cc=dietmar.eggemann@arm.com \
    --cc=f.fainelli@gmail.com \
    --cc=guoren@kernel.org \
    --cc=hpa@zytor.com \
    --cc=ink@jurassic.park.msu.ru \
    --cc=jcmvbkbc@gmail.com \
    --cc=jgross@suse.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=jpoimboe@kernel.org \
    --cc=juri.lelli@redhat.com \
    --cc=kernel@xen0n.name \
    --cc=linux-alpha@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-csky@vger.kernel.org \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=linux-xtensa@linux-xtensa.org \
    --cc=linux@armlinux.org.uk \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=loongarch@lists.linux.dev \
    --cc=mattst88@gmail.com \
    --cc=mgorman@suse.de \
    --cc=mingo@redhat.com \
    --cc=mpe@ellerman.id.au \
    --cc=npiggin@gmail.com \
    --cc=paulmck@kernel.org \
    --cc=peterz@infradead.org \
    --cc=richard.henderson@linaro.org \
    --cc=rostedt@goodmis.org \
    --cc=sparclinux@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tsbogend@alpha.franken.de \
    --cc=vincent.guittot@linaro.org \
    --cc=vschneid@redhat.com \
    --cc=will@kernel.org \
    --cc=x86@kernel.org \
    --cc=ysato@users.sourceforge.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.