From: Benjamin Herrenschmidt Date: Tue, 12 Mar 2013 22:49:06 +0000 (+1100) Subject: powerpc: Fix STAB initialization X-Git-Tag: v3.4.37~27 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9d4a6f2cee36dab61a3bd58d1f197f733738995f;p=karo-tx-linux.git powerpc: Fix STAB initialization commit 13938117a57f88a22f0df9722a5db7271fda85cd upstream. Commit f5339277eb8d3aed37f12a27988366f68ab68930 accidentally removed more than just iSeries bits and took out the call to stab_initialize() thus breaking support for POWER3 processors. Put it back. (Yes, nobody noticed until now ...) Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 377e5cbedbbb..15972e244752 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c @@ -759,6 +759,8 @@ void __init early_init_mmu(void) /* Initialize stab / SLB management */ if (mmu_has_feature(MMU_FTR_SLB)) slb_initialize(); + else + stab_initialize(get_paca()->stab_real); } #ifdef CONFIG_SMP