2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __MMU_H
|
|
|
|
#define __MMU_H
|
|
|
|
|
2008-02-09 18:24:35 +01:00
|
|
|
typedef struct {
|
|
|
|
struct list_head crst_list;
|
|
|
|
struct list_head pgtable_list;
|
|
|
|
unsigned long asce_bits;
|
2008-02-09 18:24:37 +01:00
|
|
|
unsigned long asce_limit;
|
2008-02-09 18:24:35 +01:00
|
|
|
int noexec;
|
2008-03-25 18:47:10 +01:00
|
|
|
int pgstes;
|
2008-02-09 18:24:35 +01:00
|
|
|
} mm_context_t;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif
|