]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/perf: Add an accessor for regs->result
authorMichael Ellerman <michael@ellerman.id.au>
Thu, 25 Apr 2013 19:28:25 +0000 (19:28 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 26 Apr 2013 06:11:08 +0000 (16:11 +1000)
Add an accessor for regs->result so we can use it to store more flags in
future.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Acked-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/perf/core-book3s.c

index 2417fe2a57366e40a9dd21b05610ced91376388d..5d3000178736fdc8962147d5ab4e839979e06778 100644 (file)
@@ -89,6 +89,11 @@ static inline int siar_valid(struct pt_regs *regs)
 
 #endif /* CONFIG_PPC32 */
 
+static bool regs_use_siar(struct pt_regs *regs)
+{
+       return !!(regs->result & 1);
+}
+
 /*
  * Things that are specific to 64-bit implementations.
  */
@@ -162,7 +167,7 @@ static inline u32 perf_flags_from_msr(struct pt_regs *regs)
 
 static inline u32 perf_get_misc_flags(struct pt_regs *regs)
 {
-       unsigned long use_siar = regs->result;
+       bool use_siar = regs_use_siar(regs);
 
        if (!use_siar)
                return perf_flags_from_msr(regs);
@@ -1425,7 +1430,7 @@ unsigned long perf_misc_flags(struct pt_regs *regs)
  */
 unsigned long perf_instruction_pointer(struct pt_regs *regs)
 {
-       unsigned long use_siar = regs->result;
+       bool use_siar = regs_use_siar(regs);
 
        if (use_siar && siar_valid(regs))
                return mfspr(SPRN_SIAR) + perf_ip_adjust(regs);