Make vm_page_release_contig() static.

This commit is contained in:
Alan Cox 2006-09-03 22:24:08 +00:00
parent 0f3eaf0932
commit e1cb7bc081
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161968
2 changed files with 1 additions and 2 deletions

View file

@ -355,7 +355,7 @@ vm_page_release_contigl(vm_page_t m, vm_pindex_t count)
}
}
void
static void
vm_page_release_contig(vm_page_t m, vm_pindex_t count)
{
vm_page_lock_queues();

View file

@ -329,7 +329,6 @@ void vm_page_activate (vm_page_t);
vm_page_t vm_page_alloc (vm_object_t, vm_pindex_t, int);
vm_page_t vm_page_alloc_contig (vm_pindex_t, vm_paddr_t, vm_paddr_t,
vm_offset_t, vm_offset_t);
void vm_page_release_contig (vm_page_t, vm_pindex_t);
vm_page_t vm_page_grab (vm_object_t, vm_pindex_t, int);
void vm_page_cache (register vm_page_t);
int vm_page_try_to_cache (vm_page_t);