uml: allow using again x86/x86_64 crypto code
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / um / include / sysdep-i386 / kernel-offsets.h
blob2e58c4c6ebf06d84255a4c629457a478280c1bdb
1 #include <linux/stddef.h>
2 #include <linux/sched.h>
3 #include <linux/elf.h>
4 #include <linux/crypto.h>
5 #include <asm/mman.h>
7 #define DEFINE(sym, val) \
8 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
10 #define STR(x) #x
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));
18 void foo(void)
20 OFFSET(HOST_TASK_DEBUGREGS, task_struct, thread.arch.debugregs);
21 DEFINE(KERNEL_MADV_REMOVE, MADV_REMOVE);
22 #ifdef CONFIG_MODE_TT
23 OFFSET(HOST_TASK_EXTERN_PID, task_struct, thread.mode.tt.extern_pid);
24 #endif
25 #include <common-offsets.h>