Module Name: src Committed By: hannken Date: Fri Nov 30 09:53:41 UTC 2018
Modified Files: src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_vnops.c src/external/cddl/osnet/sys/sys: uio.h Log Message: Zfs_write() may hide write errors if uiomove() succeeds but a further dmu_tx_assign() fails because over quota or no space. Use the emulated uiocopy() and uioskip() like illumos does. Fix the uiocopy() emulation to not clobber the iovecs. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c cvs rdiff -u -r1.11 -r1.12 src/external/cddl/osnet/sys/sys/uio.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.