blob: 13ec4215f437078659afb337b0c546903c7225f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __MMU_H
#define __MMU_H
typedef struct {
struct list_head crst_list;
struct list_head pgtable_list;
unsigned long asce_bits;
int noexec;
} mm_context_t;
#endif
|