x86/amd-iommu: Workaround for erratum 63
[linux-2.6/verdex.git] / arch / sparc / kernel / asm-offsets.c
blob68f7e1118e9b3a7ab845282e1378304630da87df
1 /*
2 * This program is used to generate definitions needed by
3 * assembly language modules.
5 * We use the technique used in the OSF Mach kernel code:
6 * generate asm statements containing #defines,
7 * compile this file to assembler, and then extract the
8 * #defines from the assembly-language output.
10 * On sparc, thread_info data is static and TI_XXX offsets are computed by hand.
13 #include <linux/sched.h>
14 // #include <linux/mm.h>
15 #include <linux/kbuild.h>
17 #ifdef CONFIG_SPARC32
18 int sparc32_foo(void)
20 DEFINE(AOFF_thread_fork_kpsr,
21 offsetof(struct thread_struct, fork_kpsr));
22 return 0;
24 #else
25 int sparc64_foo(void)
27 return 0;
29 #endif
31 int foo(void)
33 BLANK();
34 DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread));
35 BLANK();
36 DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context));
38 /* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */
39 return 0;