All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: ardb@kernel.org
Cc: linux-kernel@vger.kernel.org, ardb@kernel.org,
	keithpac@amazon.com, linux@armlinux.org.uk,
	catalin.marinas@arm.com, will@kernel.org, mpe@ellerman.id.au,
	benh@kernel.crashing.org, christophe.leroy@csgroup.eu,
	paulus@samba.org, Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, hca@linux.ibm.com, gor@linux.ibm.com,
	borntraeger@de.ibm.com, tglx@linutronix.de, mingo@redhat.com,
	bp@alien8.de, peterz@infradead.org, keescook@chromium.org,
	luto@kernel.org, Linus Torvalds <torvalds@linux-foundation.org>,
	Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org, linux-riscv@lists.infradead.org,
	linux-s390@vger.kernel.org
Subject: Re: [RFC PATCH 7/8] riscv: rely on core code to keep thread_info::cpu updated
Date: Tue, 28 Sep 2021 15:07:39 -0700 (PDT)	[thread overview]
Message-ID: <mhng-7d24dba9-38a7-4267-b01c-388471412237@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210914121036.3975026-8-ardb@kernel.org>

On Tue, 14 Sep 2021 05:10:35 PDT (-0700), ardb@kernel.org wrote:
> Now that the core code switched back to using thread_info::cpu to keep
> a task's CPU number, we no longer need to keep it in sync explicitly. So
> just drop the code that does this.
>
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>  arch/riscv/kernel/asm-offsets.c | 1 -
>  arch/riscv/kernel/entry.S       | 5 -----
>  arch/riscv/kernel/head.S        | 1 -
>  3 files changed, 7 deletions(-)
>
> diff --git a/arch/riscv/kernel/asm-offsets.c b/arch/riscv/kernel/asm-offsets.c
> index 90f8ce64fa6f..478d9f02dab5 100644
> --- a/arch/riscv/kernel/asm-offsets.c
> +++ b/arch/riscv/kernel/asm-offsets.c
> @@ -33,7 +33,6 @@ void asm_offsets(void)
>  	OFFSET(TASK_TI_PREEMPT_COUNT, task_struct, thread_info.preempt_count);
>  	OFFSET(TASK_TI_KERNEL_SP, task_struct, thread_info.kernel_sp);
>  	OFFSET(TASK_TI_USER_SP, task_struct, thread_info.user_sp);
> -	OFFSET(TASK_TI_CPU, task_struct, thread_info.cpu);
>
>  	OFFSET(TASK_THREAD_F0,  task_struct, thread.fstate.f[0]);
>  	OFFSET(TASK_THREAD_F1,  task_struct, thread.fstate.f[1]);
> diff --git a/arch/riscv/kernel/entry.S b/arch/riscv/kernel/entry.S
> index 98f502654edd..459eb1714353 100644
> --- a/arch/riscv/kernel/entry.S
> +++ b/arch/riscv/kernel/entry.S
> @@ -544,11 +544,6 @@ ENTRY(__switch_to)
>  	REG_L s9,  TASK_THREAD_S9_RA(a4)
>  	REG_L s10, TASK_THREAD_S10_RA(a4)
>  	REG_L s11, TASK_THREAD_S11_RA(a4)
> -	/* Swap the CPU entry around. */
> -	lw a3, TASK_TI_CPU(a0)
> -	lw a4, TASK_TI_CPU(a1)
> -	sw a3, TASK_TI_CPU(a1)
> -	sw a4, TASK_TI_CPU(a0)
>  	/* The offset of thread_info in task_struct is zero. */
>  	move tp, a1
>  	ret
> diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S
> index fce5184b22c3..d5ec30ef6f5d 100644
> --- a/arch/riscv/kernel/head.S
> +++ b/arch/riscv/kernel/head.S
> @@ -317,7 +317,6 @@ clear_bss_done:
>  	call setup_trap_vector
>  	/* Restore C environment */
>  	la tp, init_task
> -	sw zero, TASK_TI_CPU(tp)
>  	la sp, init_thread_union + THREAD_SIZE
>
>  #ifdef CONFIG_KASAN

Acked-by: Palmer Dabbelt <palmerdabbelt@google.com>

Thanks!

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: ardb@kernel.org
Cc: linux-kernel@vger.kernel.org, ardb@kernel.org,
	keithpac@amazon.com, linux@armlinux.org.uk,
	catalin.marinas@arm.com, will@kernel.org, mpe@ellerman.id.au,
	 benh@kernel.crashing.org, christophe.leroy@csgroup.eu,
	paulus@samba.org, Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, hca@linux.ibm.com, gor@linux.ibm.com,
	 borntraeger@de.ibm.com, tglx@linutronix.de, mingo@redhat.com,
	bp@alien8.de, peterz@infradead.org, keescook@chromium.org,
	luto@kernel.org, Linus Torvalds <torvalds@linux-foundation.org>,
	 Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org,  linux-riscv@lists.infradead.org,
	linux-s390@vger.kernel.org
Subject: Re: [RFC PATCH 7/8] riscv: rely on core code to keep thread_info::cpu updated
Date: Tue, 28 Sep 2021 15:07:39 -0700 (PDT)	[thread overview]
Message-ID: <mhng-7d24dba9-38a7-4267-b01c-388471412237@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210914121036.3975026-8-ardb@kernel.org>

On Tue, 14 Sep 2021 05:10:35 PDT (-0700), ardb@kernel.org wrote:
> Now that the core code switched back to using thread_info::cpu to keep
> a task's CPU number, we no longer need to keep it in sync explicitly. So
> just drop the code that does this.
>
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>  arch/riscv/kernel/asm-offsets.c | 1 -
>  arch/riscv/kernel/entry.S       | 5 -----
>  arch/riscv/kernel/head.S        | 1 -
>  3 files changed, 7 deletions(-)
>
> diff --git a/arch/riscv/kernel/asm-offsets.c b/arch/riscv/kernel/asm-offsets.c
> index 90f8ce64fa6f..478d9f02dab5 100644
> --- a/arch/riscv/kernel/asm-offsets.c
> +++ b/arch/riscv/kernel/asm-offsets.c
> @@ -33,7 +33,6 @@ void asm_offsets(void)
>  	OFFSET(TASK_TI_PREEMPT_COUNT, task_struct, thread_info.preempt_count);
>  	OFFSET(TASK_TI_KERNEL_SP, task_struct, thread_info.kernel_sp);
>  	OFFSET(TASK_TI_USER_SP, task_struct, thread_info.user_sp);
> -	OFFSET(TASK_TI_CPU, task_struct, thread_info.cpu);
>
>  	OFFSET(TASK_THREAD_F0,  task_struct, thread.fstate.f[0]);
>  	OFFSET(TASK_THREAD_F1,  task_struct, thread.fstate.f[1]);
> diff --git a/arch/riscv/kernel/entry.S b/arch/riscv/kernel/entry.S
> index 98f502654edd..459eb1714353 100644
> --- a/arch/riscv/kernel/entry.S
> +++ b/arch/riscv/kernel/entry.S
> @@ -544,11 +544,6 @@ ENTRY(__switch_to)
>  	REG_L s9,  TASK_THREAD_S9_RA(a4)
>  	REG_L s10, TASK_THREAD_S10_RA(a4)
>  	REG_L s11, TASK_THREAD_S11_RA(a4)
> -	/* Swap the CPU entry around. */
> -	lw a3, TASK_TI_CPU(a0)
> -	lw a4, TASK_TI_CPU(a1)
> -	sw a3, TASK_TI_CPU(a1)
> -	sw a4, TASK_TI_CPU(a0)
>  	/* The offset of thread_info in task_struct is zero. */
>  	move tp, a1
>  	ret
> diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S
> index fce5184b22c3..d5ec30ef6f5d 100644
> --- a/arch/riscv/kernel/head.S
> +++ b/arch/riscv/kernel/head.S
> @@ -317,7 +317,6 @@ clear_bss_done:
>  	call setup_trap_vector
>  	/* Restore C environment */
>  	la tp, init_task
> -	sw zero, TASK_TI_CPU(tp)
>  	la sp, init_thread_union + THREAD_SIZE
>
>  #ifdef CONFIG_KASAN

Acked-by: Palmer Dabbelt <palmerdabbelt@google.com>

Thanks!

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: ardb@kernel.org
Cc: peterz@infradead.org, paulus@samba.org,
	linux-riscv@lists.infradead.org, will@kernel.org,
	ardb@kernel.org, linux-s390@vger.kernel.org,
	Arnd Bergmann <arnd@arndb.de>,
	linux@armlinux.org.uk, borntraeger@de.ibm.com, mingo@redhat.com,
	catalin.marinas@arm.com, aou@eecs.berkeley.edu,
	keescook@chromium.org, gor@linux.ibm.com, hca@linux.ibm.com,
	keithpac@amazon.com, bp@alien8.de, luto@kernel.org,
	Paul Walmsley <paul.walmsley@sifive.com>,
	tglx@linutronix.de, linux-arm-kernel@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [RFC PATCH 7/8] riscv: rely on core code to keep thread_info::cpu updated
Date: Tue, 28 Sep 2021 15:07:39 -0700 (PDT)	[thread overview]
Message-ID: <mhng-7d24dba9-38a7-4267-b01c-388471412237@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210914121036.3975026-8-ardb@kernel.org>

On Tue, 14 Sep 2021 05:10:35 PDT (-0700), ardb@kernel.org wrote:
> Now that the core code switched back to using thread_info::cpu to keep
> a task's CPU number, we no longer need to keep it in sync explicitly. So
> just drop the code that does this.
>
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>  arch/riscv/kernel/asm-offsets.c | 1 -
>  arch/riscv/kernel/entry.S       | 5 -----
>  arch/riscv/kernel/head.S        | 1 -
>  3 files changed, 7 deletions(-)
>
> diff --git a/arch/riscv/kernel/asm-offsets.c b/arch/riscv/kernel/asm-offsets.c
> index 90f8ce64fa6f..478d9f02dab5 100644
> --- a/arch/riscv/kernel/asm-offsets.c
> +++ b/arch/riscv/kernel/asm-offsets.c
> @@ -33,7 +33,6 @@ void asm_offsets(void)
>  	OFFSET(TASK_TI_PREEMPT_COUNT, task_struct, thread_info.preempt_count);
>  	OFFSET(TASK_TI_KERNEL_SP, task_struct, thread_info.kernel_sp);
>  	OFFSET(TASK_TI_USER_SP, task_struct, thread_info.user_sp);
> -	OFFSET(TASK_TI_CPU, task_struct, thread_info.cpu);
>
>  	OFFSET(TASK_THREAD_F0,  task_struct, thread.fstate.f[0]);
>  	OFFSET(TASK_THREAD_F1,  task_struct, thread.fstate.f[1]);
> diff --git a/arch/riscv/kernel/entry.S b/arch/riscv/kernel/entry.S
> index 98f502654edd..459eb1714353 100644
> --- a/arch/riscv/kernel/entry.S
> +++ b/arch/riscv/kernel/entry.S
> @@ -544,11 +544,6 @@ ENTRY(__switch_to)
>  	REG_L s9,  TASK_THREAD_S9_RA(a4)
>  	REG_L s10, TASK_THREAD_S10_RA(a4)
>  	REG_L s11, TASK_THREAD_S11_RA(a4)
> -	/* Swap the CPU entry around. */
> -	lw a3, TASK_TI_CPU(a0)
> -	lw a4, TASK_TI_CPU(a1)
> -	sw a3, TASK_TI_CPU(a1)
> -	sw a4, TASK_TI_CPU(a0)
>  	/* The offset of thread_info in task_struct is zero. */
>  	move tp, a1
>  	ret
> diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S
> index fce5184b22c3..d5ec30ef6f5d 100644
> --- a/arch/riscv/kernel/head.S
> +++ b/arch/riscv/kernel/head.S
> @@ -317,7 +317,6 @@ clear_bss_done:
>  	call setup_trap_vector
>  	/* Restore C environment */
>  	la tp, init_task
> -	sw zero, TASK_TI_CPU(tp)
>  	la sp, init_thread_union + THREAD_SIZE
>
>  #ifdef CONFIG_KASAN

Acked-by: Palmer Dabbelt <palmerdabbelt@google.com>

Thanks!

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: ardb@kernel.org
Cc: linux-kernel@vger.kernel.org, ardb@kernel.org,
	keithpac@amazon.com, linux@armlinux.org.uk,
	catalin.marinas@arm.com, will@kernel.org, mpe@ellerman.id.au,
	 benh@kernel.crashing.org, christophe.leroy@csgroup.eu,
	paulus@samba.org, Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, hca@linux.ibm.com, gor@linux.ibm.com,
	 borntraeger@de.ibm.com, tglx@linutronix.de, mingo@redhat.com,
	bp@alien8.de, peterz@infradead.org, keescook@chromium.org,
	luto@kernel.org, Linus Torvalds <torvalds@linux-foundation.org>,
	 Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org,  linux-riscv@lists.infradead.org,
	linux-s390@vger.kernel.org
Subject: Re: [RFC PATCH 7/8] riscv: rely on core code to keep thread_info::cpu updated
Date: Tue, 28 Sep 2021 15:07:39 -0700 (PDT)	[thread overview]
Message-ID: <mhng-7d24dba9-38a7-4267-b01c-388471412237@palmerdabbelt-glaptop> (raw)
In-Reply-To: <20210914121036.3975026-8-ardb@kernel.org>

On Tue, 14 Sep 2021 05:10:35 PDT (-0700), ardb@kernel.org wrote:
> Now that the core code switched back to using thread_info::cpu to keep
> a task's CPU number, we no longer need to keep it in sync explicitly. So
> just drop the code that does this.
>
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>  arch/riscv/kernel/asm-offsets.c | 1 -
>  arch/riscv/kernel/entry.S       | 5 -----
>  arch/riscv/kernel/head.S        | 1 -
>  3 files changed, 7 deletions(-)
>
> diff --git a/arch/riscv/kernel/asm-offsets.c b/arch/riscv/kernel/asm-offsets.c
> index 90f8ce64fa6f..478d9f02dab5 100644
> --- a/arch/riscv/kernel/asm-offsets.c
> +++ b/arch/riscv/kernel/asm-offsets.c
> @@ -33,7 +33,6 @@ void asm_offsets(void)
>  	OFFSET(TASK_TI_PREEMPT_COUNT, task_struct, thread_info.preempt_count);
>  	OFFSET(TASK_TI_KERNEL_SP, task_struct, thread_info.kernel_sp);
>  	OFFSET(TASK_TI_USER_SP, task_struct, thread_info.user_sp);
> -	OFFSET(TASK_TI_CPU, task_struct, thread_info.cpu);
>
>  	OFFSET(TASK_THREAD_F0,  task_struct, thread.fstate.f[0]);
>  	OFFSET(TASK_THREAD_F1,  task_struct, thread.fstate.f[1]);
> diff --git a/arch/riscv/kernel/entry.S b/arch/riscv/kernel/entry.S
> index 98f502654edd..459eb1714353 100644
> --- a/arch/riscv/kernel/entry.S
> +++ b/arch/riscv/kernel/entry.S
> @@ -544,11 +544,6 @@ ENTRY(__switch_to)
>  	REG_L s9,  TASK_THREAD_S9_RA(a4)
>  	REG_L s10, TASK_THREAD_S10_RA(a4)
>  	REG_L s11, TASK_THREAD_S11_RA(a4)
> -	/* Swap the CPU entry around. */
> -	lw a3, TASK_TI_CPU(a0)
> -	lw a4, TASK_TI_CPU(a1)
> -	sw a3, TASK_TI_CPU(a1)
> -	sw a4, TASK_TI_CPU(a0)
>  	/* The offset of thread_info in task_struct is zero. */
>  	move tp, a1
>  	ret
> diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S
> index fce5184b22c3..d5ec30ef6f5d 100644
> --- a/arch/riscv/kernel/head.S
> +++ b/arch/riscv/kernel/head.S
> @@ -317,7 +317,6 @@ clear_bss_done:
>  	call setup_trap_vector
>  	/* Restore C environment */
>  	la tp, init_task
> -	sw zero, TASK_TI_CPU(tp)
>  	la sp, init_thread_union + THREAD_SIZE
>
>  #ifdef CONFIG_KASAN

Acked-by: Palmer Dabbelt <palmerdabbelt@google.com>

Thanks!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-09-28 22:07 UTC|newest]

Thread overview: 128+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-14 12:10 [RFC PATCH 0/8] Move task_struct::cpu back into thread_info Ard Biesheuvel
2021-09-14 12:10 ` Ard Biesheuvel
2021-09-14 12:10 ` Ard Biesheuvel
2021-09-14 12:10 ` Ard Biesheuvel
2021-09-14 12:10 ` [RFC PATCH 1/8] arm64: add CPU field to struct thread_info Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 15:41   ` Linus Torvalds
2021-09-14 15:41     ` Linus Torvalds
2021-09-14 15:41     ` Linus Torvalds
2021-09-14 15:41     ` Linus Torvalds
2021-09-14 15:42     ` Ard Biesheuvel
2021-09-14 15:42       ` Ard Biesheuvel
2021-09-14 15:42       ` Ard Biesheuvel
2021-09-14 15:42       ` Ard Biesheuvel
2021-09-16 14:41   ` Catalin Marinas
2021-09-16 14:41     ` Catalin Marinas
2021-09-16 14:41     ` Catalin Marinas
2021-09-16 14:41     ` Catalin Marinas
2021-09-21 12:04     ` Ard Biesheuvel
2021-09-21 12:04       ` Ard Biesheuvel
2021-09-21 12:04       ` Ard Biesheuvel
2021-09-21 12:04       ` Ard Biesheuvel
2021-09-14 12:10 ` [RFC PATCH 2/8] x86: " Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-21 12:54   ` Borislav Petkov
2021-09-21 12:54     ` Borislav Petkov
2021-09-21 12:54     ` Borislav Petkov
2021-09-21 12:54     ` Borislav Petkov
2021-09-14 12:10 ` [RFC PATCH 3/8] s390: " Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-28 13:52   ` Ard Biesheuvel
2021-09-28 13:52     ` Ard Biesheuvel
2021-09-28 13:52     ` Ard Biesheuvel
2021-09-28 13:52     ` Ard Biesheuvel
2021-09-14 12:10 ` [RFC PATCH 4/8] powerpc: " Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-27 15:12   ` Ard Biesheuvel
2021-09-27 15:12     ` Ard Biesheuvel
2021-09-27 15:12     ` Ard Biesheuvel
2021-09-27 15:12     ` Ard Biesheuvel
2021-09-27 23:13     ` Michael Ellerman
2021-09-27 23:13       ` Michael Ellerman
2021-09-27 23:13       ` Michael Ellerman
2021-09-27 23:13       ` Michael Ellerman
2021-09-28  0:16       ` Michael Ellerman
2021-09-28  0:16         ` Michael Ellerman
2021-09-28  0:16         ` Michael Ellerman
2021-09-28  0:16         ` Michael Ellerman
2021-09-28 13:18         ` Ard Biesheuvel
2021-09-28 13:18           ` Ard Biesheuvel
2021-09-28 13:18           ` Ard Biesheuvel
2021-09-28 13:18           ` Ard Biesheuvel
2021-09-29 22:46           ` Michael Ellerman
2021-09-29 22:46             ` Michael Ellerman
2021-09-29 22:46             ` Michael Ellerman
2021-09-29 22:46             ` Michael Ellerman
2021-09-29 23:10             ` Kees Cook
2021-09-29 23:10               ` Kees Cook
2021-09-29 23:10               ` Kees Cook
2021-09-29 23:10               ` Kees Cook
2021-09-30 17:47             ` Kees Cook
2021-09-30 17:47               ` Kees Cook
2021-09-30 17:47               ` Kees Cook
2021-09-30 17:47               ` Kees Cook
2021-10-05  1:55               ` Michael Ellerman
2021-10-05  1:55                 ` Michael Ellerman
2021-10-05  1:55                 ` Michael Ellerman
2021-10-05  1:55                 ` Michael Ellerman
2021-09-14 12:10 ` [RFC PATCH 5/8] sched: move CPU field back into thread_info if THREAD_INFO_IN_TASK=y Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 15:46   ` Linus Torvalds
2021-09-14 15:46     ` Linus Torvalds
2021-09-14 15:46     ` Linus Torvalds
2021-09-14 15:46     ` Linus Torvalds
2021-09-14 15:52     ` Ard Biesheuvel
2021-09-14 15:52       ` Ard Biesheuvel
2021-09-14 15:52       ` Ard Biesheuvel
2021-09-14 15:52       ` Ard Biesheuvel
2021-09-14 15:58       ` Linus Torvalds
2021-09-14 15:58         ` Linus Torvalds
2021-09-14 15:58         ` Linus Torvalds
2021-09-14 15:58         ` Linus Torvalds
2021-09-14 16:10         ` Ard Biesheuvel
2021-09-14 16:10           ` Ard Biesheuvel
2021-09-14 16:10           ` Ard Biesheuvel
2021-09-14 16:10           ` Ard Biesheuvel
2021-09-21 13:12   ` Catalin Marinas
2021-09-21 13:12     ` Catalin Marinas
2021-09-21 13:12     ` Catalin Marinas
2021-09-21 13:12     ` Catalin Marinas
2021-09-14 12:10 ` [RFC PATCH 6/8] powerpc: smp: remove hack to obtain offset of task_struct::cpu Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10 ` [RFC PATCH 7/8] riscv: rely on core code to keep thread_info::cpu updated Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-28 22:07   ` Palmer Dabbelt [this message]
2021-09-28 22:07     ` Palmer Dabbelt
2021-09-28 22:07     ` Palmer Dabbelt
2021-09-28 22:07     ` Palmer Dabbelt
2021-09-14 12:10 ` [RFC PATCH 8/8] ARM: " Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 12:10   ` Ard Biesheuvel
2021-09-14 13:49 ` [RFC PATCH 0/8] Move task_struct::cpu back into thread_info Christophe Leroy
2021-09-14 13:49   ` Christophe Leroy
2021-09-14 13:49   ` Christophe Leroy
2021-09-14 13:49   ` Christophe Leroy
2021-09-14 13:55 ` Mark Rutland
2021-09-14 13:55   ` Mark Rutland
2021-09-14 13:55   ` Mark Rutland
2021-09-14 13:55   ` Mark Rutland
2021-09-21 12:06   ` Ard Biesheuvel
2021-09-21 12:06     ` Ard Biesheuvel
2021-09-21 12:06     ` Ard Biesheuvel
2021-09-21 12:06     ` Ard Biesheuvel

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=mhng-7d24dba9-38a7-4267-b01c-388471412237@palmerdabbelt-glaptop \
    --to=palmer@dabbelt.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=ardb@kernel.org \
    --cc=arnd@arndb.de \
    --cc=benh@kernel.crashing.org \
    --cc=borntraeger@de.ibm.com \
    --cc=bp@alien8.de \
    --cc=catalin.marinas@arm.com \
    --cc=christophe.leroy@csgroup.eu \
    --cc=gor@linux.ibm.com \
    --cc=hca@linux.ibm.com \
    --cc=keescook@chromium.org \
    --cc=keithpac@amazon.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=mpe@ellerman.id.au \
    --cc=paul.walmsley@sifive.com \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=will@kernel.org \
    /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.