blob: 5dd5e7b3476ff1e431fc034f04fe4241a1ea7878 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __MMU_H
2#define __MMU_H
3
Martin Schwidefsky146e4b32008-02-09 18:24:35 +01004typedef struct {
5 struct list_head crst_list;
6 struct list_head pgtable_list;
7 unsigned long asce_bits;
Martin Schwidefsky6252d702008-02-09 18:24:37 +01008 unsigned long asce_limit;
Martin Schwidefsky146e4b32008-02-09 18:24:35 +01009 int noexec;
Carsten Otte402b0862008-03-25 18:47:10 +010010 int pgstes;
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010011} mm_context_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#endif