mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Only x86 has own release_thread(), introduce a new weak release_thread() function to clean empty definitions in other ARCHs. Link: https://lkml.kernel.org/r/20220819014406.32266-1-wangkefeng.wang@huawei.com Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Acked-by: Guo Ren <guoren@kernel.org> [csky] Acked-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Brian Cain <bcain@quicinc.com> Acked-by: Michael Ellerman <mpe@ellerman.id.au> [powerpc] Acked-by: Stafford Horne <shorne@gmail.com> [openrisc] Acked-by: Catalin Marinas <catalin.marinas@arm.com> [arm64] Acked-by: Huacai Chen <chenhuacai@kernel.org> [LoongArch] Cc: Alexander Gordeev <agordeev@linux.ibm.com> Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Christian Borntraeger <borntraeger@linux.ibm.com> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: Chris Zankel <chris@zankel.net> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Dinh Nguyen <dinguyen@kernel.org> Cc: Guo Ren <guoren@kernel.org> [csky] Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Helge Deller <deller@gmx.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: James Bottomley <James.Bottomley@HansenPartnership.com> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Jonas Bonn <jonas@southpole.se> Cc: Matt Turner <mattst88@gmail.com> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Michal Simek <monstr@monstr.eu> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Richard Henderson <richard.henderson@linaro.org> Cc: Richard Weinberger <richard@nod.at> Cc: Rich Felker <dalias@libc.org> Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Cc: Sven Schnelle <svens@linux.ibm.com> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Vineet Gupta <vgupta@kernel.org> Cc: Will Deacon <will@kernel.org> Cc: Xuerui Wang <kernel@xen0n.name> Cc: Yoshinori Sato <ysato@users.osdn.me> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* include/asm-alpha/processor.h
|
|
*
|
|
* Copyright (C) 1994 Linus Torvalds
|
|
*/
|
|
|
|
#ifndef __ASM_ALPHA_PROCESSOR_H
|
|
#define __ASM_ALPHA_PROCESSOR_H
|
|
|
|
#include <linux/personality.h> /* for ADDR_LIMIT_32BIT */
|
|
|
|
/*
|
|
* We have a 42-bit user address space: 4TB user VM...
|
|
*/
|
|
#define TASK_SIZE (0x40000000000UL)
|
|
|
|
#define STACK_TOP \
|
|
(current->personality & ADDR_LIMIT_32BIT ? 0x80000000 : 0x00120000000UL)
|
|
|
|
#define STACK_TOP_MAX 0x00120000000UL
|
|
|
|
/* This decides where the kernel will search for a free chunk of vm
|
|
* space during mmap's.
|
|
*/
|
|
#define TASK_UNMAPPED_BASE \
|
|
((current->personality & ADDR_LIMIT_32BIT) ? 0x40000000 : TASK_SIZE / 2)
|
|
|
|
/* This is dead. Everything has been moved to thread_info. */
|
|
struct thread_struct { };
|
|
#define INIT_THREAD { }
|
|
|
|
/* Do necessary setup to start up a newly executed thread. */
|
|
struct pt_regs;
|
|
extern void start_thread(struct pt_regs *, unsigned long, unsigned long);
|
|
|
|
/* Free all resources held by a thread. */
|
|
struct task_struct;
|
|
unsigned long __get_wchan(struct task_struct *p);
|
|
|
|
#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
|
|
|
|
#define KSTK_ESP(tsk) \
|
|
((tsk) == current ? rdusp() : task_thread_info(tsk)->pcb.usp)
|
|
|
|
#define cpu_relax() barrier()
|
|
|
|
#define ARCH_HAS_PREFETCH
|
|
#define ARCH_HAS_PREFETCHW
|
|
#define ARCH_HAS_SPINLOCK_PREFETCH
|
|
|
|
#ifndef CONFIG_SMP
|
|
/* Nothing to prefetch. */
|
|
#define spin_lock_prefetch(lock) do { } while (0)
|
|
#endif
|
|
|
|
extern inline void prefetch(const void *ptr)
|
|
{
|
|
__builtin_prefetch(ptr, 0, 3);
|
|
}
|
|
|
|
extern inline void prefetchw(const void *ptr)
|
|
{
|
|
__builtin_prefetch(ptr, 1, 3);
|
|
}
|
|
|
|
#ifdef CONFIG_SMP
|
|
extern inline void spin_lock_prefetch(const void *ptr)
|
|
{
|
|
__builtin_prefetch(ptr, 1, 3);
|
|
}
|
|
#endif
|
|
|
|
#endif /* __ASM_ALPHA_PROCESSOR_H */
|