I neglected to remove vm_page_change_lock(), which still had a couple of
consumers in the contig reclaim code.
Fix object locking. The page lock no longer protects the page's
<object, pindex> tuple as of r352110. Instead we must unconditionally
acquire the object lock and validate the page's object pointer.
Remove an unnecessary second check for page wirings in
vm_page_scan_contig(). Both checks are racy so it doesn't really make
sense to repeat them. Races are handled properly in
vm_page_reclaim_run().