idmap.h 316 B

123456789101112131415
  1. #ifndef __ASM_IDMAP_H
  2. #define __ASM_IDMAP_H
  3. #include <linux/compiler.h>
  4. #include <asm/pgtable.h>
  5. /* Tag a function as requiring to be executed via an identity mapping. */
  6. #define __idmap __section(.idmap.text) noinline notrace
  7. extern pgd_t *idmap_pgd;
  8. void setup_mm_for_reboot(void);
  9. #endif /* __ASM_IDMAP_H */