svn commit: r251624 - vendor-sys/illumos/dist/uts/common/fs/zfs vendor/illumos/dist/cmd/ztest
Xin LI
delphij at FreeBSD.org
Tue Jun 11 18:43:26 UTC 2013
Author: delphij
Date: Tue Jun 11 18:43:25 2013
New Revision: 251624
URL: http://svnweb.freebsd.org/changeset/base/251624
Log:
Update vendor/illumos/dist and vendor-sys/illumos/dist
to illumos-gate 14050:0c8d9998d589
Illumos ZFS issues:
3747 txg commit callbacks don't work
Modified:
vendor/illumos/dist/cmd/ztest/ztest.c
Changes in other areas also in this revision:
Modified:
vendor-sys/illumos/dist/uts/common/fs/zfs/txg.c
Modified: vendor/illumos/dist/cmd/ztest/ztest.c
==============================================================================
--- vendor/illumos/dist/cmd/ztest/ztest.c Tue Jun 11 18:39:38 2013 (r251623)
+++ vendor/illumos/dist/cmd/ztest/ztest.c Tue Jun 11 18:43:25 2013 (r251624)
@@ -4507,7 +4507,7 @@ ztest_dmu_commit_callbacks(ztest_ds_t *z
*/
tmp_cb = list_head(&zcl.zcl_callbacks);
if (tmp_cb != NULL &&
- tmp_cb->zcd_txg > txg - ZTEST_COMMIT_CALLBACK_THRESH) {
+ (txg - ZTEST_COMMIT_CALLBACK_THRESH) > tmp_cb->zcd_txg) {
fatal(0, "Commit callback threshold exceeded, oldest txg: %"
PRIu64 ", open txg: %" PRIu64 "\n", tmp_cb->zcd_txg, txg);
}
More information about the svn-src-vendor
mailing list