]> git.ipfire.org Git - thirdparty/linux.git/commit
arch: remove ARCH_TASK_STRUCT_ON_STACK
authorHeiko Carstens <hca@linux.ibm.com>
Thu, 16 Nov 2023 13:36:38 +0000 (14:36 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:31 +0000 (17:21 -0800)
commit0eb5085c38749f2a91e5bd8cbebb1ebf3398343c
tree624ba4c568d4badd4be5a3bb79ad5f4988f8f232
parent3888750e21ccb909051c810cc79fcc0650a740f8
arch: remove ARCH_TASK_STRUCT_ON_STACK

IA-64 was the only architecture which selected ARCH_TASK_STRUCT_ON_STACK.
IA-64 was removed with commit cf8e8658100d ("arch: Remove Itanium (IA-64)
architecture"). Therefore remove support for ARCH_TASK_STRUCT_ON_STACK
as well.

Note: this also reveals a potential bug in powerpc code, which makes use of
__init_task_data without selecting ARCH_TASK_STRUCT_ON_STACK which makes
__init_task_data a no-op. This is broken since commit d11ed3ab3166 ("Expand
INIT_TASK() in init/init_task.c and remove") from 2018 and needs to be
addressed separately.

Link: https://lkml.kernel.org/r/20231116133638.1636277-4-hca@linux.ibm.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/Kconfig
arch/powerpc/kexec/core_64.c
include/linux/init_task.h
include/linux/sched.h
init/init_task.c