1 #include <linux/config.h>
2 #include <linux/stddef.h>
3 #include <linux/sched.h>
4 #include <linux/time.h>
7 #define DEFINE(sym, val) \
8 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
11 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " STR(val) " " #val: : )
13 #define BLANK() asm volatile("\n->" : : )
15 #define OFFSET(sym, str, mem) \
16 DEFINE(sym, offsetof(struct str, mem));
20 OFFSET(TASK_DEBUGREGS
, task_struct
, thread
.arch
.debugregs
);
22 OFFSET(TASK_EXTERN_PID
, task_struct
, thread
.mode
.tt
.extern_pid
);
24 #include <common-offsets.h>