2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __ARCH_S390_PERCPU__
|
|
|
|
#define __ARCH_S390_PERCPU__
|
|
|
|
|
|
|
|
/*
|
|
|
|
* s390 uses its own implementation for per cpu data, the offset of
|
|
|
|
* the cpu local data area is cached in the cpu's lowcore memory.
|
|
|
|
*/
|
2009-06-24 06:13:53 +00:00
|
|
|
#define __my_cpu_offset S390_lowcore.percpu_offset
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-06-24 06:13:53 +00:00
|
|
|
/*
|
|
|
|
* For 64 bit module code, the module may be more than 4G above the
|
|
|
|
* per cpu area, use weak definitions to force the compiler to
|
|
|
|
* generate external references.
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_SMP) && defined(__s390x__) && defined(MODULE)
|
|
|
|
#define ARCH_NEEDS_WEAK_PER_CPU
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
2008-01-30 22:27:58 +00:00
|
|
|
#include <asm-generic/percpu.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __ARCH_S390_PERCPU__ */
|