summaryrefslogtreecommitdiffstats
path: root/sys/cddl
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2010-10-12 17:04:21 +0000
committeravg <avg@FreeBSD.org>2010-10-12 17:04:21 +0000
commit3bb689aafadf915d572fd946e9403fd922773fe0 (patch)
treea0ea7944ba5de78207f3c61517bba52ea84e08b1 /sys/cddl
parent465ea6bc32a124d7427fba6851b9ff75874ba1ab (diff)
downloadFreeBSD-src-3bb689aafadf915d572fd946e9403fd922773fe0.zip
FreeBSD-src-3bb689aafadf915d572fd946e9403fd922773fe0.tar.gz
zfs + sendfile: do not produce partially valid pages for vnode's tail
Since r212650 and before this change sendfile(2) could produce a partially valid page for a trailing portion of a ZFS vnode. vm_fault() always wants to see a fully valid page even if it's the last page that partially extends beyond vnode's end. Otherwise it calls vop_getpages() to bring in the page. In the case of ZFS this means that the data is read from the page into the same page and this breaks checks in ZFS mappedread() - a thread that set VPO_BUSY on the page in vm_fault() will get blocked forever waiting for it to be cleared. Many thanks to Kai and Jeremy for reproducing the issue and providing important debugging information and help. Reported by: Kai Gallasch <gallasch@free.de>, Jeremy Chadwick <freebsd@jdc.parodius.com> Tested by: Kai Gallasch <gallasch@free.de>, Jeremy Chadwick <freebsd@jdc.parodius.com> Reviewed by: kib MFC after: 3 days To-Do: apply the same treatment to tmpfs + sendfile
Diffstat (limited to 'sys/cddl')
-rw-r--r--sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
index 1edc357..c3d1fa5 100644
--- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
+++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
@@ -489,6 +489,8 @@ again:
* but it pessimize performance of sendfile/UFS, that's
* why I handle this special case in ZFS code.
*/
+ KASSERT(off == 0,
+ ("unexpected offset in mappedread for sendfile"));
if ((m->oflags & VPO_BUSY) != 0) {
/*
* Reference the page before unlocking and
@@ -509,14 +511,15 @@ again:
}
if (error == 0) {
va = zfs_map_page(m, &sf);
- error = dmu_read(os, zp->z_id, start + off,
- bytes, (void *)(va + off),
+ error = dmu_read(os, zp->z_id, start, bytes, va,
DMU_READ_PREFETCH);
+ if (bytes != PAGE_SIZE)
+ bzero(va + bytes, PAGE_SIZE - bytes);
zfs_unmap_page(sf);
}
VM_OBJECT_LOCK(obj);
if (error == 0)
- vm_page_set_valid(m, off, bytes);
+ m->valid = VM_PAGE_BITS_ALL;
vm_page_wakeup(m);
if (error == 0) {
uio->uio_resid -= bytes;
OpenPOWER on IntegriCloud