2007-10-20 08:56:59 +02:00
|
|
|
#ifndef _ASM_X86_MMU_H
|
|
|
|
#define _ASM_X86_MMU_H
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The x86 doesn't have a mmu context, but
|
|
|
|
* we put the segment information here.
|
|
|
|
*
|
|
|
|
* cpu_vm_mask is used to optimize ldt flushing.
|
|
|
|
*/
|
2008-03-23 09:02:44 +01:00
|
|
|
typedef struct {
|
2007-10-20 08:56:59 +02:00
|
|
|
void *ldt;
|
|
|
|
#ifdef CONFIG_X86_64
|
2008-03-23 09:02:44 +01:00
|
|
|
rwlock_t ldtlock;
|
2007-10-11 11:20:03 +02:00
|
|
|
#endif
|
2007-10-20 08:56:59 +02:00
|
|
|
int size;
|
|
|
|
struct mutex lock;
|
|
|
|
void *vdso;
|
|
|
|
} mm_context_t;
|
|
|
|
|
2008-01-30 13:32:01 +01:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
void leave_mm(int cpu);
|
|
|
|
#else
|
|
|
|
static inline void leave_mm(int cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-10-20 08:56:59 +02:00
|
|
|
#endif /* _ASM_X86_MMU_H */
|