diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-12-16 23:15:23 +0100 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2011-07-19 00:43:04 +0200 |
commit | f04e2ee41d3dbeb6eeb3685d1b4c208b898e278f (patch) | |
tree | 7592f34c3d2e40c65dbf5486ca94a0dff89e4a4c /arch | |
parent | xen/multicalls: remove debugfs stats (diff) | |
download | linux-f04e2ee41d3dbeb6eeb3685d1b4c208b898e278f.tar.xz linux-f04e2ee41d3dbeb6eeb3685d1b4c208b898e278f.zip |
xen/trace: set up tracepoint skeleton
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/xen/Makefile | 2 | ||||
-rw-r--r-- | arch/x86/xen/trace.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 17c565de3d64..6fdf366ff688 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -13,7 +13,7 @@ CFLAGS_mmu.o := $(nostackp) obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ time.o xen-asm.o xen-asm_$(BITS).o \ grant-table.o suspend.o platform-pci-unplug.o \ - p2m.o + p2m.o trace.o obj-$(CONFIG_SMP) += smp.o obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o diff --git a/arch/x86/xen/trace.c b/arch/x86/xen/trace.c new file mode 100644 index 000000000000..8cca61640226 --- /dev/null +++ b/arch/x86/xen/trace.c @@ -0,0 +1,4 @@ +#include <linux/ftrace.h> + +#define CREATE_TRACE_POINTS +#include <trace/events/xen.h> |