aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/mmu.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic/mmu.h')
-rw-r--r--include/asm-generic/mmu.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-generic/mmu.h b/include/asm-generic/mmu.h
index 4f4aa56d6b52..0ed3f1cfb854 100644
--- a/include/asm-generic/mmu.h
+++ b/include/asm-generic/mmu.h
@@ -7,8 +7,12 @@
7 */ 7 */
8#ifndef __ASSEMBLY__ 8#ifndef __ASSEMBLY__
9typedef struct { 9typedef struct {
10 struct vm_list_struct *vmlist;
11 unsigned long end_brk; 10 unsigned long end_brk;
11
12#ifdef CONFIG_BINFMT_ELF_FDPIC
13 unsigned long exec_fdpic_loadmap;
14 unsigned long interp_fdpic_loadmap;
15#endif
12} mm_context_t; 16} mm_context_t;
13#endif 17#endif
14 18