2 * Generate definitions needed by assembly language modules.
3 * This code generates raw asm output which is post-processed to extract
4 * and format the required data.
7 #include <linux/sched.h>
8 #include <linux/stddef.h>
9 #include <linux/errno.h>
10 #include <linux/hardirq.h>
12 #include <asm/processor.h>
13 #include <asm/segment.h>
14 #include <asm/thread_info.h>
17 #define DEFINE(sym, val) \
18 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
20 #define BLANK() asm volatile("\n->" : : )
24 #define ENTRY(entry) DEFINE(tsk_ ## entry, offsetof(struct task_struct, entry))
31 #define ENTRY(entry) DEFINE(threadinfo_ ## entry, offsetof(struct thread_info, entry))
37 #define ENTRY(entry) DEFINE(pda_ ## entry, offsetof(struct x8664_pda, entry))
47 #ifdef CONFIG_IA32_EMULATION
48 #define ENTRY(entry) DEFINE(IA32_SIGCONTEXT_ ## entry, offsetof(struct sigcontext_ia32, entry))
60 DEFINE(IA32_RT_SIGFRAME_sigcontext
,
61 offsetof (struct rt_sigframe32
, uc
.uc_mcontext
));