Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / hexagon / include / asm / mmu.h
blobdfa46660d695bb65b40bf4c5beed32653719d916
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
4 */
6 #ifndef _ASM_MMU_H
7 #define _ASM_MMU_H
9 #include <asm/vdso.h>
12 * Architecture-specific state for a mm_struct.
13 * For the Hexagon Virtual Machine, it can be a copy
14 * of the pointer to the page table base.
16 struct mm_context {
17 unsigned long long generation;
18 unsigned long ptbase;
19 struct hexagon_vdso *vdso;
22 typedef struct mm_context mm_context_t;
24 #endif