aboutsummaryrefslogtreecommitdiffstats
path: root/old/xenolinux-2.4.16-sparse/include/asm-xeno/mmu.h
blob: 6a47b34c41f37b014a1c1aee2258c1ec47edf44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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