summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/fs/tmpfs/tmpfs_subr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/tmpfs/tmpfs_subr.c b/sys/fs/tmpfs/tmpfs_subr.c
index 8dc8338..5b13e64 100644
--- a/sys/fs/tmpfs/tmpfs_subr.c
+++ b/sys/fs/tmpfs/tmpfs_subr.c
@@ -906,10 +906,9 @@ tmpfs_reg_resize(struct vnode *vp, off_t newsize)
if (zerolen > 0) {
m = vm_page_grab(uobj, OFF_TO_IDX(newsize),
- VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
+ VM_ALLOC_NOBUSY | VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
pmap_zero_page_area(m, PAGE_SIZE - zerolen,
zerolen);
- vm_page_wakeup(m);
}
VM_OBJECT_UNLOCK(uobj);
OpenPOWER on IntegriCloud