mmu.h 374 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  4. */
  5. #ifndef __ARCH_UM_MMU_H
  6. #define __ARCH_UM_MMU_H
  7. #include <mm_id.h>
  8. typedef struct mm_context {
  9. struct mm_id id;
  10. /* Address range in need of a TLB sync */
  11. unsigned long sync_tlb_range_from;
  12. unsigned long sync_tlb_range_to;
  13. } mm_context_t;
  14. #endif