mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 15:56:47 +07:00
061d19f279
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0
("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
This removes all the powerpc uses of the __cpuinit macros. There
are no __CPUINIT users in assembly files in powerpc.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Josh Boyer <jwboyer@gmail.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: linuxppc-dev@lists.ozlabs.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
80 lines
1.5 KiB
C
80 lines
1.5 KiB
C
#ifndef __PPC64_VDSO_H__
|
|
#define __PPC64_VDSO_H__
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
/* Default link addresses for the vDSOs */
|
|
#define VDSO32_LBASE 0x100000
|
|
#define VDSO64_LBASE 0x100000
|
|
|
|
/* Default map addresses for 32bit vDSO */
|
|
#define VDSO32_MBASE VDSO32_LBASE
|
|
|
|
#define VDSO_VERSION_STRING LINUX_2.6.15
|
|
|
|
/* Define if 64 bits VDSO has procedure descriptors */
|
|
#undef VDS64_HAS_DESCRIPTORS
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
/* Offsets relative to thread->vdso_base */
|
|
extern unsigned long vdso64_rt_sigtramp;
|
|
extern unsigned long vdso32_sigtramp;
|
|
extern unsigned long vdso32_rt_sigtramp;
|
|
|
|
int vdso_getcpu_init(void);
|
|
|
|
#else /* __ASSEMBLY__ */
|
|
|
|
#ifdef __VDSO64__
|
|
#ifdef VDS64_HAS_DESCRIPTORS
|
|
#define V_FUNCTION_BEGIN(name) \
|
|
.globl name; \
|
|
.section ".opd","a"; \
|
|
.align 3; \
|
|
name: \
|
|
.quad .name,.TOC.@tocbase,0; \
|
|
.previous; \
|
|
.globl .name; \
|
|
.type .name,@function; \
|
|
.name: \
|
|
|
|
#define V_FUNCTION_END(name) \
|
|
.size .name,.-.name;
|
|
|
|
#define V_LOCAL_FUNC(name) (.name)
|
|
|
|
#else /* VDS64_HAS_DESCRIPTORS */
|
|
|
|
#define V_FUNCTION_BEGIN(name) \
|
|
.globl name; \
|
|
name: \
|
|
|
|
#define V_FUNCTION_END(name) \
|
|
.size name,.-name;
|
|
|
|
#define V_LOCAL_FUNC(name) (name)
|
|
|
|
#endif /* VDS64_HAS_DESCRIPTORS */
|
|
#endif /* __VDSO64__ */
|
|
|
|
#ifdef __VDSO32__
|
|
|
|
#define V_FUNCTION_BEGIN(name) \
|
|
.globl name; \
|
|
.type name,@function; \
|
|
name: \
|
|
|
|
#define V_FUNCTION_END(name) \
|
|
.size name,.-name;
|
|
|
|
#define V_LOCAL_FUNC(name) (name)
|
|
|
|
#endif /* __VDSO32__ */
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* __PPC64_VDSO_H__ */
|