[POWERPC] fix PMU initialization on pseries lpar
authorSonny Rao <sonny@burdell.org>
Wed, 2 Aug 2006 04:20:09 +0000 (00:20 -0400)
committerPaul Mackerras <paulus@samba.org>
Tue, 8 Aug 2006 05:55:12 +0000 (15:55 +1000)
We should not be calling power4_enable_pmcs() in
pseries_lpar_enable_pmcs(); just doing the hypercall is sufficient.
Prior to 2.6.15 we did not call power4_enable_pmcs() for an lpar.

power4_enable_pmcs() tries to read the hid0 register which is no
longer legal for an lpar in newer Power processors.

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/platforms/pseries/setup.c

index 71c634e..31867a7 100644 (file)
@@ -213,8 +213,6 @@ static void pseries_lpar_enable_pmcs(void)
 {
        unsigned long set, reset;
 
-       power4_enable_pmcs();
-
        set = 1UL << 63;
        reset = 0;
        plpar_hcall_norets(H_PERFMON, set, reset);