]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/um/include/sysdep-x86_64/kernel-offsets.h
Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/agpgart
[linux-2.6-omap-h63xx.git] / arch / um / include / sysdep-x86_64 / kernel-offsets.h
1 #include <linux/stddef.h>
2 #include <linux/sched.h>
3 #include <linux/time.h>
4 #include <linux/elf.h>
5 #include <linux/crypto.h>
6 #include <asm/page.h>
7 #include <asm/mman.h>
8
9 #define DEFINE(sym, val) \
10         asm volatile("\n->" #sym " %0 " #val : : "i" (val))
11
12 #define DEFINE_STR1(x) #x
13 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " DEFINE_STR1(val) " " #val: : )
14
15 #define BLANK() asm volatile("\n->" : : )
16
17 #define OFFSET(sym, str, mem) \
18         DEFINE(sym, offsetof(struct str, mem));
19
20 #define __NO_STUBS 1
21 #undef __SYSCALL
22 #undef _ASM_X86_64_UNISTD_H_
23 #define __SYSCALL(nr, sym) [nr] = 1,
24 static char syscalls[] = {
25 #include <asm/arch/unistd.h>
26 };
27
28 void foo(void)
29 {
30 #include <common-offsets.h>
31 DEFINE(UM_NR_syscall_max, sizeof(syscalls) - 1);
32 }