2005-04-16 18:20:36 -04:00
|
|
|
#ifndef __MMU_H
|
|
|
|
#define __MMU_H
|
|
|
|
|
2008-02-09 12:24:35 -05:00
|
|
|
typedef struct {
|
|
|
|
struct list_head crst_list;
|
|
|
|
struct list_head pgtable_list;
|
|
|
|
unsigned long asce_bits;
|
2008-02-09 12:24:37 -05:00
|
|
|
unsigned long asce_limit;
|
2008-12-25 07:38:36 -05:00
|
|
|
unsigned long vdso_base;
|
2008-02-09 12:24:35 -05:00
|
|
|
int noexec;
|
2008-10-28 06:10:15 -04:00
|
|
|
int has_pgste; /* The mmu context has extended page tables */
|
|
|
|
int alloc_pgste; /* cloned contexts will have extended page tables */
|
2008-02-09 12:24:35 -05:00
|
|
|
} mm_context_t;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
#endif
|