mmu.h 395 B

12345678910111213141516171819
  1. /* MN10300 Memory management context
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. * - Derived from include/asm-frv/mmu.h
  6. */
  7. #ifndef _ASM_MMU_H
  8. #define _ASM_MMU_H
  9. /*
  10. * MMU context
  11. */
  12. typedef struct {
  13. unsigned long tlbpid[NR_CPUS]; /* TLB PID for this process on
  14. * each CPU */
  15. } mm_context_t;
  16. #endif /* _ASM_MMU_H */