sandbox: vm: make vm_page queue entry private, owner-defined usage

This commit is contained in:
2023-02-02 16:58:24 +00:00
parent e5a7546996
commit 3c781a4cb3
2 changed files with 10 additions and 10 deletions

View File

@@ -133,7 +133,7 @@ typedef struct vm_page {
some examples:
- the buddy allocator uses this to maintain its per-zone free-page lists.
*/
queue_entry_t p_free_list;
queue_entry_t p_list;
} __attribute__((aligned(2 * sizeof(unsigned long)))) vm_page_t;