summaryrefslogtreecommitdiffstats
path: root/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2016-11-12 23:52:39 +0000
committermav <mav@FreeBSD.org>2016-11-12 23:52:39 +0000
commitdd9903d50b424e07ad2f044b60101cb465d9baa1 (patch)
tree9f040437a054007b83362ebfaacc36cc23781992 /sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
parent0def80e6a75e92dc2208ccf49c4fd260d22338d6 (diff)
downloadFreeBSD-src-dd9903d50b424e07ad2f044b60101cb465d9baa1.zip
FreeBSD-src-dd9903d50b424e07ad2f044b60101cb465d9baa1.tar.gz
MFC r308169:
Pass to zvol_log_truncate() same sync values as to zvol_log_write(). Surplus marking of TX_TRUNCATE records as sync could result in putting them into ZIL before previous writes if ones were async.
Diffstat (limited to 'sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c')
-rw-r--r--sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
index c825930..693de88 100644
--- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
+++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
@@ -1649,7 +1649,7 @@ zvol_strategy(struct bio *bp)
if (error != 0) {
dmu_tx_abort(tx);
} else {
- zvol_log_truncate(zv, tx, off, resid, B_TRUE);
+ zvol_log_truncate(zv, tx, off, resid, sync);
dmu_tx_commit(tx);
error = dmu_free_long_range(zv->zv_objset, ZVOL_OBJ,
off, resid);
@@ -3093,9 +3093,9 @@ zvol_d_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct threa
{
zvol_state_t *zv;
rl_t *rl;
- off_t offset, length, chunk;
+ off_t offset, length;
int i, error;
- u_int u;
+ boolean_t sync;
zv = dev->si_drv2;
@@ -3133,15 +3133,17 @@ zvol_d_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct threa
dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
error = dmu_tx_assign(tx, TXG_WAIT);
if (error != 0) {
+ sync = FALSE;
dmu_tx_abort(tx);
} else {
- zvol_log_truncate(zv, tx, offset, length, B_TRUE);
+ sync = (zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS);
+ zvol_log_truncate(zv, tx, offset, length, sync);
dmu_tx_commit(tx);
error = dmu_free_long_range(zv->zv_objset, ZVOL_OBJ,
offset, length);
}
zfs_range_unlock(rl);
- if (zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS)
+ if (sync)
zil_commit(zv->zv_zilog, ZVOL_OBJ);
break;
case DIOCGSTRIPESIZE:
OpenPOWER on IntegriCloud