2008-06-18 09:08:48 -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-06-18 09:08:48 -06:00
|
|
|
#endif /* ASM_X86__MMU_H */
|