diff options
author | Pavel Tatashin <pasha.tatashin@soleen.com> | 2019-12-04 16:59:22 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-01-08 17:32:55 +0100 |
commit | 7ea4088938b793d9a8d4e205b2fe54fba4cf9739 (patch) | |
tree | ea99627a9fd306dc29c5f7fc7745b9fc974fdd79 /arch/arm64/include/asm/pgtable-hwdef.h | |
parent | arm64: hibernate: rename dst to page in create_safe_exec_page (diff) | |
download | linux-7ea4088938b793d9a8d4e205b2fe54fba4cf9739.tar.xz linux-7ea4088938b793d9a8d4e205b2fe54fba4cf9739.zip |
arm64: hibernate: add PUD_SECT_RDONLY
There is PMD_SECT_RDONLY that is used in pud_* function which is confusing.
Signed-off-by: Pavel Tatashin <pasha.tatashin@soleen.com>
Acked-by: James Morse <james.morse@arm.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/include/asm/pgtable-hwdef.h')
-rw-r--r-- | arch/arm64/include/asm/pgtable-hwdef.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h index d9fbd433cc17..9961c7cee9c5 100644 --- a/arch/arm64/include/asm/pgtable-hwdef.h +++ b/arch/arm64/include/asm/pgtable-hwdef.h @@ -110,6 +110,7 @@ #define PUD_TABLE_BIT (_AT(pudval_t, 1) << 1) #define PUD_TYPE_MASK (_AT(pudval_t, 3) << 0) #define PUD_TYPE_SECT (_AT(pudval_t, 1) << 0) +#define PUD_SECT_RDONLY (_AT(pudval_t, 1) << 7) /* AP[2] */ /* * Level 2 descriptor (PMD). |