mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Export the function vm_page_splay().
This commit is contained in:
parent
69c3915a5b
commit
ada2a050be
2 changed files with 2 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ vm_page_dirty(vm_page_t m)
|
|||
* pindex is not found in the vm_object, returns a vm_page that is
|
||||
* adjacent to the pindex, coming before or after it.
|
||||
*/
|
||||
static vm_page_t
|
||||
vm_page_t
|
||||
vm_page_splay(vm_pindex_t pindex, vm_page_t root)
|
||||
{
|
||||
struct vm_page dummy;
|
||||
|
|
|
|||
|
|
@ -356,6 +356,7 @@ void vm_page_insert (vm_page_t, vm_object_t, vm_pindex_t);
|
|||
vm_page_t vm_page_lookup (vm_object_t, vm_pindex_t);
|
||||
void vm_page_remove (vm_page_t);
|
||||
void vm_page_rename (vm_page_t, vm_object_t, vm_pindex_t);
|
||||
vm_page_t vm_page_splay(vm_pindex_t, vm_page_t);
|
||||
vm_offset_t vm_page_startup (vm_offset_t, vm_offset_t, vm_offset_t);
|
||||
void vm_page_unmanage (vm_page_t);
|
||||
void vm_page_unwire (vm_page_t, int);
|
||||
|
|
|
|||
Loading…
Reference in a new issue