mmu.h 301 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  4. */
  5. #ifndef __ASM_MMU_H
  6. #define __ASM_MMU_H
  7. #include <linux/atomic.h>
  8. #include <linux/spinlock.h>
  9. typedef struct {
  10. u64 asid[NR_CPUS];
  11. void *vdso;
  12. } mm_context_t;
  13. #endif /* __ASM_MMU_H */