Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/cddl/osnet/dist/uts/common/fs/zfs Disable assertion...
details: https://anonhg.NetBSD.org/src/rev/f9f5edeabc2b
branches: trunk
changeset: 457365:f9f5edeabc2b
user: hannken <hannken%NetBSD.org@localhost>
date: Fri Jun 21 10:59:50 2019 +0000
description:
Disable assertion: illumos 7793 ztest fails assertion in dmu_tx_willuse_space
diffstat:
external/cddl/osnet/dist/uts/common/fs/zfs/dmu_tx.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diffs (14 lines):
diff -r 38e5de6b9d2f -r f9f5edeabc2b external/cddl/osnet/dist/uts/common/fs/zfs/dmu_tx.c
--- a/external/cddl/osnet/dist/uts/common/fs/zfs/dmu_tx.c Fri Jun 21 09:34:30 2019 +0000
+++ b/external/cddl/osnet/dist/uts/common/fs/zfs/dmu_tx.c Fri Jun 21 10:59:50 2019 +0000
@@ -1427,8 +1427,10 @@
return;
if (delta > 0) {
+/* FreeBSD r318821, illumos 7793 ztest fails assertion in dmu_tx_willuse_space
ASSERT3U(refcount_count(&tx->tx_space_written) + delta, <=,
tx->tx_space_towrite);
+*/
(void) refcount_add_many(&tx->tx_space_written, delta, NULL);
} else {
(void) refcount_add_many(&tx->tx_space_freed, -delta, NULL);
Home |
Main Index |
Thread Index |
Old Index