Prev: [RFC][PATCH 00/11] perf pmu interface -v2
Next: [RFC][PATCH 05/11] perf: register pmu implementations
From: Peter Zijlstra on 24 Jun 2010 10:50 From: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj(a)renesas.com> "struct regs" was set to argument of perf_arch_fetch_caller_regs. "struct pt_regs" is correct. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj(a)renesas.com> Acked-by: Frederic Weisbecker <fweisbec(a)gmail.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra(a)chello.nl> LKML-Reference: <AANLkTinKKFKEBQrZ3Hkj-XCaMwaTqulb-XnFzqEYiFRr(a)mail.gmail.com> --- include/linux/perf_event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/include/linux/perf_event.h =================================================================== --- linux-2.6.orig/include/linux/perf_event.h +++ linux-2.6/include/linux/perf_event.h @@ -971,7 +971,7 @@ extern void __perf_sw_event(u32, u64, in #ifndef perf_arch_fetch_caller_regs static inline void -perf_arch_fetch_caller_regs(struct regs *regs, unsigned long ip) { } +perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { } #endif /* -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |