1 | // SPDX-License-Identifier: GPL-3.0-or-later |
---|---|
2 | #pragma once |
3 | |
4 | #include "mos/platform/platform.h" |
5 | |
6 | struct pagetable_do_map_data |
7 | { |
8 | pfn_t pfn; |
9 | vm_flags flags; |
10 | bool do_refcount; // whether to increment the reference count of the frame |
11 | }; |
12 | |
13 | extern const pagetable_walk_options_t pagetable_do_map_callbacks; |
14 |