aboutsummaryrefslogtreecommitdiffstats
path: root/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h')
-rw-r--r--old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h b/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h
new file mode 100644
index 0000000000..6a47b34c41
--- /dev/null
+++ b/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h
@@ -0,0 +1,24 @@
+
+#ifndef __i386_MMU_H
+#define __i386_MMU_H
+
+#include <linux/list.h>
+
+/* describes dirrectly mapped vma nodes */
+typedef struct {
+ struct list_head list;
+ unsigned long vm_start;
+ unsigned long vm_end;
+} direct_mmap_node_t;
+
+/*
+ * The i386 doesn't have a mmu context, but
+ * we put the segment information here.
+ */
+typedef struct {
+ void *segments;
+ unsigned long cpuvalid;
+ struct list_head direct_list;
+} mm_context_t;
+
+#endif