You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
214 B
14 lines
214 B
20 years ago
|
#ifndef __MMU_H
|
||
|
#define __MMU_H
|
||
|
|
||
17 years ago
|
typedef struct {
|
||
|
struct list_head crst_list;
|
||
|
struct list_head pgtable_list;
|
||
|
unsigned long asce_bits;
|
||
17 years ago
|
unsigned long asce_limit;
|
||
17 years ago
|
int noexec;
|
||
17 years ago
|
int pgstes;
|
||
17 years ago
|
} mm_context_t;
|
||
20 years ago
|
|
||
|
#endif
|