Linux 2.6.26-rc5
[linux-2.6/openmoko-kernel/knife-kernel.git] / arch / um / include / um_mmu.h
blobf575ff91f2a01796951c90090542b18344e6998b
1 /*
2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #ifndef __ARCH_UM_MMU_H
7 #define __ARCH_UM_MMU_H
9 #include "uml-config.h"
10 #include "mm_id.h"
11 #include "asm/ldt.h"
13 typedef struct mm_context {
14 struct mm_id id;
15 struct uml_ldt ldt;
16 struct page **stub_pages;
17 } mm_context_t;
19 extern void __switch_mm(struct mm_id * mm_idp);
21 /* Avoid tangled inclusion with asm/ldt.h */
22 extern long init_new_ldt(struct mm_context *to_mm, struct mm_context *from_mm);
23 extern void free_ldt(struct mm_context *mm);
25 #endif