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