mmu_32.h 309 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __i386_MMU_H
#define __i386_MMU_H

4
#include <linux/mutex.h>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12
/*
 * The i386 doesn't have a mmu context, but
 * we put the segment information here.
 *
 * cpu_vm_mask is used to optimize ldt flushing.
 */
typedef struct { 
	int size;
13
	struct mutex lock;
L
Linus Torvalds 已提交
14
	void *ldt;
15
	void *vdso;
L
Linus Torvalds 已提交
16 17 18
} mm_context_t;

#endif