mmu-skas.h 757 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __SKAS_MMU_H
  6. #define __SKAS_MMU_H
  7. #include "linux/config.h"
  8. #include "mm_id.h"
  9. struct mmu_context_skas {
  10. struct mm_id id;
  11. unsigned long last_page_table;
  12. #ifdef CONFIG_3_LEVEL_PGTABLES
  13. unsigned long last_pmd;
  14. #endif
  15. };
  16. extern void switch_mm_skas(struct mm_id * mm_idp);
  17. #endif
  18. /*
  19. * Overrides for Emacs so that we follow Linus's tabbing style.
  20. * Emacs will notice this stuff at the end of the file and automatically
  21. * adjust the settings for this buffer only. This must remain at the end
  22. * of the file.
  23. * ---------------------------------------------------------------------------
  24. * Local variables:
  25. * c-file-style: "linux"
  26. * End:
  27. */