Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
perf, x86, Pentium4: Clear the P4_CCCR_FORCE_OVF flag
tracing/trace_stack: Fix stack trace on ppc64

+3 -1
+2
arch/x86/kernel/cpu/perf_event_p4.c
··· 497 497 event->hw.config |= event->attr.config & 498 498 (p4_config_pack_escr(P4_ESCR_MASK_HT) | 499 499 p4_config_pack_cccr(P4_CCCR_MASK_HT | P4_CCCR_RESERVED)); 500 + 501 + event->hw.config &= ~P4_CCCR_FORCE_OVF; 500 502 } 501 503 502 504 rc = x86_setup_perfctr(event);
+1 -1
kernel/trace/trace_stack.c
··· 249 249 { 250 250 unsigned long addr = stack_dump_trace[i]; 251 251 252 - return seq_printf(m, "%pF\n", (void *)addr); 252 + return seq_printf(m, "%pS\n", (void *)addr); 253 253 } 254 254 255 255 static void print_disabled(struct seq_file *m)