diff options
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 26eb154..bd02030 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1184,7 +1184,7 @@ vinvalbuf(vp, flags, cred, td, slpflag, slptimeo) */ if (VOP_GETVOBJECT(vp, &object) == 0) { VM_OBJECT_LOCK(object); - vm_object_page_remove(object, 0, 0, + vm_object_page_remove(object, 0, object->size, (flags & V_SAVE) ? TRUE : FALSE); VM_OBJECT_UNLOCK(object); } |