mmu.h 336 B

1234567891011121314
  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 has_pgste; /* The mmu context has extended page tables */
  10. int alloc_pgste; /* cloned contexts will have extended page tables */
  11. } mm_context_t;
  12. #endif