Skip to content

Commit

Permalink
FIX:the page entry problem of map kernel window
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiyuanSue committed Sep 12, 2024
1 parent c6d8d92 commit a30c40e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sel4_vspace/src/arch/aarch64/pte.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ impl PTE {
| (AF & 0x1) << 10
| (SH & 0x3) << 8
| (AP & 0x3) << 6
| (AttrIndx & 0x7) << 2;
| (AttrIndx & 0x7) << 2
| (0x1 << 0);

PTE(val)
}
Expand Down

0 comments on commit a30c40e

Please sign in to comment.