1 #include <linux/config.h>
2 #include <linux/stddef.h>
3 #include <linux/sched.h>
4 #include <linux/time.h>
8 #define DEFINE(sym, val) \
9 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
12 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " STR(val) " " #val: : )
14 #define BLANK() asm volatile("\n->" : : )
16 #define OFFSET(sym, str, mem) \
17 DEFINE(sym, offsetof(struct str, mem));
21 OFFSET(TASK_DEBUGREGS, task_struct, thread.arch.debugregs);
23 OFFSET(TASK_EXTERN_PID, task_struct, thread.mode.tt.extern_pid);
25 #include <common-offsets.h>