1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-13 14:40:22 +00:00

Export the function vm_page_splay().

This commit is contained in:
Alan Cox 2002-11-04 19:21:39 +00:00
parent 69c3915a5b
commit ada2a050be
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106422
2 changed files with 2 additions and 1 deletions

View File

@ -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;

View File

@ -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);