mmu.h 214 B

12345678910111213
  1. #ifndef __MMU_H
  2. #define __MMU_H
  3. typedef struct {
  4. struct list_head crst_list;
  5. struct list_head pgtable_list;
  6. unsigned long asce_bits;
  7. unsigned long asce_limit;
  8. int noexec;
  9. int pgstes;
  10. } mm_context_t;
  11. #endif