diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-22 01:55:31 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-30 19:35:55 +0200 |
commit | 2aa3a7f8660355c3dddead17e224545c1a3d5a5f (patch) | |
tree | d106fcaeb6b66e09591cf8ec28c836be93f4d837 /arch/Kconfig | |
parent | um: kill thread->forking (diff) | |
download | linux-2aa3a7f8660355c3dddead17e224545c1a3d5a5f.tar.xz linux-2aa3a7f8660355c3dddead17e224545c1a3d5a5f.zip |
preparation for generic kernel_thread()
Let architectures select GENERIC_KERNEL_THREAD and have their copy_thread()
treat NULL regs as "it came from kernel_thread(), sp argument contains
the function new thread will be calling and stack_size - the argument for
that function". Switching the architectures begins shortly...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 72f2fa189cc5..d397e11d167d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -258,6 +258,9 @@ config ARCH_WANT_OLD_COMPAT_IPC select ARCH_WANT_COMPAT_IPC_PARSE_VERSION bool +config GENERIC_KERNEL_THREAD + bool + config HAVE_ARCH_SECCOMP_FILTER bool help |