summaryrefslogtreecommitdiff
path: root/src/common/page_table.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-07-10 18:54:19 -0700
committerGitHub <noreply@github.com>2023-07-10 18:54:19 -0700
commitce7c418e0cc05d92c18ad69c7cb37fecfa71b037 (patch)
treeea1852111c1b3c3c340608ae518fc8711a4fcfe3 /src/common/page_table.h
parent169b198d084b925d3ad7048e939e8d25a83a34b8 (diff)
parentf1cfd9c2197e3e0c8409b869714b599d96e079c0 (diff)
Merge pull request #10996 from Kelebek1/readblock_optimisation
Use spans over guest memory where possible instead of copying data
Diffstat (limited to 'src/common/page_table.h')
-rw-r--r--src/common/page_table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h
index 1ad3a9f8b..fec8378f3 100644
--- a/src/common/page_table.h
+++ b/src/common/page_table.h
@@ -122,6 +122,7 @@ struct PageTable {
* corresponding attribute element is of type `Memory`.
*/
VirtualBuffer<PageInfo> pointers;
+ VirtualBuffer<u64> blocks;
VirtualBuffer<u64> backing_addr;