aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/feather_trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/feather_trace.h')
-rw-r--r--arch/x86/include/asm/feather_trace.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/x86/include/asm/feather_trace.h b/arch/x86/include/asm/feather_trace.h
new file mode 100644
index 000000000000..4fd31633405d
--- /dev/null
+++ b/arch/x86/include/asm/feather_trace.h
@@ -0,0 +1,17 @@
1#ifndef _ARCH_FEATHER_TRACE_H
2#define _ARCH_FEATHER_TRACE_H
3
4#include <asm/msr.h>
5
6static inline unsigned long long ft_timestamp(void)
7{
8 return __native_read_tsc();
9}
10
11#ifdef CONFIG_X86_32
12#include "feather_trace_32.h"
13#else
14#include "feather_trace_64.h"
15#endif
16
17#endif