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