Skip to content

Commit 59911ca

Browse files
ARM64: mm: Move PTE_PROT_NONE bit.
Under ARM64, PTEs can be broadly categorised as follows: - Present and valid: Bit #0 is set. The PTE is valid and memory access to the region may fault. - Present and invalid: Bit #0 is clear and bit #1 is set. Represents present memory with PROT_NONE protection. The PTE is an invalid entry, and the user fault handler will raise a SIGSEGV. - Not present (file or swap): Bits #0 and #1 are clear. Memory represented has been paged out. The PTE is an invalid entry, and the fault handler will try and re-populate the memory where necessary. Huge PTEs are block descriptors that have bit #1 clear. If we wish to represent PROT_NONE huge PTEs we then run into a problem as there is no way to distinguish between regular and huge PTEs if we set bit #1. To resolve this ambiguity this patch moves PTE_PROT_NONE from bit #1 to bit #2 and moves PTE_FILE from bit #2 to bit #3. The number of swap/file bits is reduced by 1 as a consequence, leaving 60 bits for file and swap entries. Signed-off-by: Steve Capper <steve.capper@linaro.org> Acked-by: Catalin Marinas <catalin.marinas@arm.com>
1 parent 072b1b6 commit 59911ca

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

arch/arm64/include/asm/pgtable.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
* Software defined PTE bits definition.
2626
*/
2727
#define PTE_VALID (_AT(pteval_t, 1) << 0)
28-
#define PTE_PROT_NONE (_AT(pteval_t, 1) << 1) /* only when !PTE_VALID */
29-
#define PTE_FILE (_AT(pteval_t, 1) << 2) /* only when !pte_present() */
28+
#define PTE_PROT_NONE (_AT(pteval_t, 1) << 2) /* only when !PTE_VALID */
29+
#define PTE_FILE (_AT(pteval_t, 1) << 3) /* only when !pte_present() */
3030
#define PTE_DIRTY (_AT(pteval_t, 1) << 55)
3131
#define PTE_SPECIAL (_AT(pteval_t, 1) << 56)
3232

@@ -281,12 +281,12 @@ extern pgd_t idmap_pg_dir[PTRS_PER_PGD];
281281

282282
/*
283283
* Encode and decode a swap entry:
284-
* bits 0-1: present (must be zero)
285-
* bit 2: PTE_FILE
286-
* bits 3-8: swap type
284+
* bits 0, 2: present (must both be zero)
285+
* bit 3: PTE_FILE
286+
* bits 4-8: swap type
287287
* bits 9-63: swap offset
288288
*/
289-
#define __SWP_TYPE_SHIFT 3
289+
#define __SWP_TYPE_SHIFT 4
290290
#define __SWP_TYPE_BITS 6
291291
#define __SWP_TYPE_MASK ((1 << __SWP_TYPE_BITS) - 1)
292292
#define __SWP_OFFSET_SHIFT (__SWP_TYPE_BITS + __SWP_TYPE_SHIFT)
@@ -306,15 +306,15 @@ extern pgd_t idmap_pg_dir[PTRS_PER_PGD];
306306

307307
/*
308308
* Encode and decode a file entry:
309-
* bits 0-1: present (must be zero)
310-
* bit 2: PTE_FILE
311-
* bits 3-63: file offset / PAGE_SIZE
309+
* bits 0, 2: present (must both be zero)
310+
* bit 3: PTE_FILE
311+
* bits 4-63: file offset / PAGE_SIZE
312312
*/
313313
#define pte_file(pte) (pte_val(pte) & PTE_FILE)
314-
#define pte_to_pgoff(x) (pte_val(x) >> 3)
315-
#define pgoff_to_pte(x) __pte(((x) << 3) | PTE_FILE)
314+
#define pte_to_pgoff(x) (pte_val(x) >> 4)
315+
#define pgoff_to_pte(x) __pte(((x) << 4) | PTE_FILE)
316316

317-
#define PTE_FILE_MAX_BITS 61
317+
#define PTE_FILE_MAX_BITS 60
318318

319319
extern int kern_addr_valid(unsigned long addr);
320320

0 commit comments

Comments
 (0)