Browse Source

PTE N bit moved from bit 62 to bit 63 (#724)

pull/726/head
Daniel Lustig 5 years ago
committed by GitHub
parent
commit
0e4b5cbc25
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      riscv/encoding.h

2
riscv/encoding.h

@ -221,7 +221,7 @@
#define PTE_A 0x040 /* Accessed */
#define PTE_D 0x080 /* Dirty */
#define PTE_SOFT 0x300 /* Reserved for Software */
#define PTE_N 0x4000000000000000 /* Svnapot: NAPOT translation contiguity */
#define PTE_N 0x8000000000000000 /* Svnapot: NAPOT translation contiguity */
#define PTE_PPN_SHIFT 10

Loading…
Cancel
Save