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, 0 insertions, 24 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
deleted file mode 100644
index 6a47b34c41..0000000000
--- a/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#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