Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-19 Thread Steven Rostedt
On Sun, 2009-10-18 at 22:01 +1100, Anton Blanchard wrote: > Hi Ben, > > > Breaks 6xx_defconfig: > > Yuck. Since the CREATE_TRACE_POINTS stuff appears to need a non trivial number > of includes it might be best just to fold it into one of the tracepoint call > sites like this. > > -- > > This pa

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-18 Thread Anton Blanchard
Hi Ben, > Breaks 6xx_defconfig: Yuck. Since the CREATE_TRACE_POINTS stuff appears to need a non trivial number of includes it might be best just to fold it into one of the tracepoint call sites like this. -- This patch adds powerpc specific tracepoints for interrupt entry and exit. While we a

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-13 Thread Benjamin Herrenschmidt
On Tue, 2009-10-06 at 15:05 +1100, Anton Blanchard wrote: > This patch adds powerpc specific tracepoints for interrupt entry and exit. .../ Breaks 6xx_defconfig: In file included from /home/benh/linux-powerpc-test/include/linux/device.h:23, from /home/benh/linux-powerpc-t

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-06 Thread Steven Rostedt
On Tue, 2009-10-06 at 15:05 +1100, Anton Blanchard wrote: > Hi Steve, > > > I think this may do better in a file like: > > > > arch/powerpc/kernel/trace.h > > > > You can look at the sample code and Makefile in samples/trace_events/ > > that shows how to make it work outside the include/trace/ev

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-05 Thread Anton Blanchard
Hi Steve, > I think this may do better in a file like: > > arch/powerpc/kernel/trace.h > > You can look at the sample code and Makefile in samples/trace_events/ > that shows how to make it work outside the include/trace/events > directory. > > I really would like to avoid placing arch specifi

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-05 Thread Steven Rostedt
On Tue, 2009-10-06 at 13:19 +1100, Anton Blanchard wrote: > This patch adds powerpc specific tracepoints for interrupt entry and exit. > > While we already have generic irq_handler_entry and irq_handler_exit > tracepoints there are cases on our virtualised powerpc machines where an > interrupt is

[PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-05 Thread Anton Blanchard
This patch adds powerpc specific tracepoints for interrupt entry and exit. While we already have generic irq_handler_entry and irq_handler_exit tracepoints there are cases on our virtualised powerpc machines where an interrupt is presented to the OS, but subsequently handled by the hypervisor. Th