diff options
Diffstat (limited to 'arch/powerpc/kernel')
| -rw-r--r-- | arch/powerpc/kernel/asm-offsets.c | 2 | ||||
| -rw-r--r-- | arch/powerpc/kernel/prom.c | 3 | 
2 files changed, 5 insertions, 0 deletions
| diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index aa0486d552a..ff294054892 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c @@ -122,6 +122,8 @@ int main(void)  	DEFINE(PACASLBCACHE, offsetof(struct paca_struct, slb_cache));  	DEFINE(PACASLBCACHEPTR, offsetof(struct paca_struct, slb_cache_ptr));  	DEFINE(PACACONTEXTID, offsetof(struct paca_struct, context.id)); +	DEFINE(PACACONTEXTSLLP, offsetof(struct paca_struct, context.sllp)); +	DEFINE(PACAVMALLOCSLLP, offsetof(struct paca_struct, vmalloc_sllp));  #ifdef CONFIG_HUGETLB_PAGE  	DEFINE(PACALOWHTLBAREAS, offsetof(struct paca_struct, context.low_htlb_areas));  	DEFINE(PACAHIGHHTLBAREAS, offsetof(struct paca_struct, context.high_htlb_areas)); diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 969f4abcc0b..d77d24a89b3 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c @@ -948,7 +948,10 @@ static struct ibm_pa_feature {  	{CPU_FTR_CTRL, 0,		0, 3, 0},  	{CPU_FTR_NOEXECUTE, 0,		0, 6, 0},  	{CPU_FTR_NODSISRALIGN, 0,	1, 1, 1}, +#if 0 +	/* put this back once we know how to test if firmware does 64k IO */  	{CPU_FTR_CI_LARGE_PAGE, 0,	1, 2, 0}, +#endif  };  static void __init check_cpu_pa_features(unsigned long node) | 
