powerpc/perf: Fix sampling enable for PPC970

The logic to distinguish marked instruction events from ordinary events
on PPC970 and derivatives was flawed. The result is that instruction
sampling didn't get enabled in the PMU for some marked instruction
events, so they would never trigger. This fixes it by adding the
appropriate break statements in the switch statement.

Reported-by: David Binderman <dcb314@hotmail.com>
Cc: stable@kernel.org
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Paul Mackerras and committed by
Benjamin Herrenschmidt
9f5f9ffe 1ef21199

+2
+2
arch/powerpc/kernel/ppc970-pmu.c
··· 169 switch (unit) { 170 case PM_VPU: 171 mask = 0x4c; /* byte 0 bits 2,3,6 */ 172 case PM_LSU0: 173 /* byte 2 bits 0,2,3,4,6; all of byte 1 */ 174 mask = 0x085dff00; 175 case PM_LSU1L: 176 mask = 0x50 << 24; /* byte 3 bits 4,6 */ 177 break;
··· 169 switch (unit) { 170 case PM_VPU: 171 mask = 0x4c; /* byte 0 bits 2,3,6 */ 172 + break; 173 case PM_LSU0: 174 /* byte 2 bits 0,2,3,4,6; all of byte 1 */ 175 mask = 0x085dff00; 176 + break; 177 case PM_LSU1L: 178 mask = 0x50 << 24; /* byte 3 bits 4,6 */ 179 break;