Browse Source

powerpc: Fix STAB initialization

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 <benh@kernel.crashing.org>
CC: <stable@vger.kernel.org> [v3.4+]
Benjamin Herrenschmidt 12 years ago
parent
commit
13938117a5
1 changed files with 2 additions and 0 deletions
  1. 2 0
      arch/powerpc/mm/hash_utils_64.c

+ 2 - 0
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