Catch up on r271387 and remove unused parameter from

VOP_GETPAGES_ASYNC().
This commit is contained in:
Gleb Smirnoff 2015-03-30 22:49:26 +00:00
parent 0bf92a38d1
commit f6d6b5e262
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=280869
2 changed files with 1 additions and 2 deletions

View File

@ -483,7 +483,6 @@ vop_getpages_async {
IN vm_page_t *m;
IN int count;
IN int reqpage;
IN vm_ooffset_t offset;
IN vop_getpages_iodone_t *iodone;
IN void *arg;
};

View File

@ -686,7 +686,7 @@ vnode_pager_getpages_async(vm_object_t object, vm_page_t *m, int count,
vp = object->handle;
VM_OBJECT_WUNLOCK(object);
rtval = VOP_GETPAGES_ASYNC(vp, m, count * PAGE_SIZE, reqpage, 0,
rtval = VOP_GETPAGES_ASYNC(vp, m, count * PAGE_SIZE, reqpage,
iodone, arg);
KASSERT(rtval != EOPNOTSUPP,
("vnode_pager: FS getpages_async not implemented\n"));