diff options
Diffstat (limited to 'arch/um/include/sysdep-x86_64/kernel-offsets.h')
-rw-r--r-- | arch/um/include/sysdep-x86_64/kernel-offsets.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/um/include/sysdep-x86_64/kernel-offsets.h b/arch/um/include/sysdep-x86_64/kernel-offsets.h new file mode 100644 index 000000000000..5ce93abd0b54 --- /dev/null +++ b/arch/um/include/sysdep-x86_64/kernel-offsets.h | |||
@@ -0,0 +1,25 @@ | |||
1 | #include <linux/config.h> | ||
2 | #include <linux/stddef.h> | ||
3 | #include <linux/sched.h> | ||
4 | #include <linux/time.h> | ||
5 | #include <linux/elf.h> | ||
6 | #include <asm/page.h> | ||
7 | |||
8 | #define DEFINE(sym, val) \ | ||
9 | asm volatile("\n->" #sym " %0 " #val : : "i" (val)) | ||
10 | |||
11 | #define DEFINE_STR1(x) #x | ||
12 | #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " DEFINE_STR1(val) " " #val: : ) | ||
13 | |||
14 | #define BLANK() asm volatile("\n->" : : ) | ||
15 | |||
16 | #define OFFSET(sym, str, mem) \ | ||
17 | DEFINE(sym, offsetof(struct str, mem)); | ||
18 | |||
19 | void foo(void) | ||
20 | { | ||
21 | #ifdef CONFIG_MODE_TT | ||
22 | OFFSET(HOST_TASK_EXTERN_PID, task_struct, thread.mode.tt.extern_pid); | ||
23 | #endif | ||
24 | #include <common-offsets.h> | ||
25 | } | ||