2008-10-22 23:26:29 -06:00
|
|
|
#ifndef _ASM_X86_MMU_H
|
|
|
|
#define _ASM_X86_MMU_H
|
2007-10-20 00:56:59 -06:00
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The x86 doesn't have a mmu context, but
|
|
|
|
* we put the segment information here.
|
|
|
|
*/
|
2008-03-23 02:02:44 -06:00
|
|
|
typedef struct {
|
2007-10-20 00:56:59 -06:00
|
|
|
void *ldt;
|
|
|
|
int size;
|
|
|
|
struct mutex lock;
|
|
|
|
void *vdso;
|
|
|
|
} mm_context_t;
|
|
|
|
|
2008-01-30 05:32:01 -07:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
void leave_mm(int cpu);
|
|
|
|
#else
|
|
|
|
static inline void leave_mm(int cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-10-22 23:26:29 -06:00
|
|
|
#endif /* _ASM_X86_MMU_H */
|