1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 23 * Portions Copyright 2011 Martin Matuska 24 * Copyright (c) 2013 by Delphix. All rights reserved. 25 */ 26 27 #include <sys/zfs_context.h> 28 #include <sys/txg_impl.h> 29 #include <sys/dmu_impl.h> 30 #include <sys/dmu_tx.h> 31 #include <sys/dsl_pool.h> 32 #include <sys/dsl_scan.h> 33 #include <sys/callb.h> 34 35 /* 36 * ZFS Transaction Groups 37 * ---------------------- 38 * 39 * ZFS transaction groups are, as the name implies, groups of transactions 40 * that act on persistent state. ZFS asserts consistency at the granularity of 41 * these transaction groups. Each successive transaction group (txg) is 42 * assigned a 64-bit consecutive identifier. There are three active 43 * transaction group states: open, quiescing, or syncing. At any given time, 44 * there may be an active txg associated with each state; each active txg may 45 * either be processing, or blocked waiting to enter the next state. There may 46 * be up to three active txgs, and there is always a txg in the open state 47 * (though it may be blocked waiting to enter the quiescing state). In broad 48 * strokes, transactions — operations that change in-memory structures — are 49 * accepted into the txg in the open state, and are completed while the txg is 50 * in the open or quiescing states. The accumulated changes are written to 51 * disk in the syncing state. 52 * 53 * Open 54 * 55 * When a new txg becomes active, it first enters the open state. New 56 * transactions — updates to in-memory structures — are assigned to the 57 * currently open txg. There is always a txg in the open state so that ZFS can 58 * accept new changes (though the txg may refuse new changes if it has hit 59 * some limit). ZFS advances the open txg to the next state for a variety of 60 * reasons such as it hitting a time or size threshold, or the execution of an 61 * administrative action that must be completed in the syncing state. 62 * 63 * Quiescing 64 * 65 * After a txg exits the open state, it enters the quiescing state. The 66 * quiescing state is intended to provide a buffer between accepting new 67 * transactions in the open state and writing them out to stable storage in 68 * the syncing state. While quiescing, transactions can continue their 69 * operation without delaying either of the other states. Typically, a txg is 70 * in the quiescing state very briefly since the operations are bounded by 71 * software latencies rather than, say, slower I/O latencies. After all 72 * transactions complete, the txg is ready to enter the next state. 73 * 74 * Syncing 75 * 76 * In the syncing state, the in-memory state built up during the open and (to 77 * a lesser degree) the quiescing states is written to stable storage. The 78 * process of writing out modified data can, in turn modify more data. For 79 * example when we write new blocks, we need to allocate space for them; those 80 * allocations modify metadata (space maps)... which themselves must be 81 * written to stable storage. During the sync state, ZFS iterates, writing out 82 * data until it converges and all in-memory changes have been written out. 83 * The first such pass is the largest as it encompasses all the modified user 84 * data (as opposed to filesystem metadata). Subsequent passes typically have 85 * far less data to write as they consist exclusively of filesystem metadata. 86 * 87 * To ensure convergence, after a certain number of passes ZFS begins 88 * overwriting locations on stable storage that had been allocated earlier in 89 * the syncing state (and subsequently freed). ZFS usually allocates new 90 * blocks to optimize for large, continuous, writes. For the syncing state to 91 * converge however it must complete a pass where no new blocks are allocated 92 * since each allocation requires a modification of persistent metadata. 93 * Further, to hasten convergence, after a prescribed number of passes, ZFS 94 * also defers frees, and stops compressing. 95 * 96 * In addition to writing out user data, we must also execute synctasks during 97 * the syncing context. A synctask is the mechanism by which some 98 * administrative activities work such as creating and destroying snapshots or 99 * datasets. Note that when a synctask is initiated it enters the open txg, 100 * and ZFS then pushes that txg as quickly as possible to completion of the 101 * syncing state in order to reduce the latency of the administrative 102 * activity. To complete the syncing state, ZFS writes out a new uberblock, 103 * the root of the tree of blocks that comprise all state stored on the ZFS 104 * pool. Finally, if there is a quiesced txg waiting, we signal that it can 105 * now transition to the syncing state. 106 */ 107 108 static void txg_sync_thread(dsl_pool_t *dp); 109 static void txg_quiesce_thread(dsl_pool_t *dp); 110 111 int zfs_txg_timeout = 5; /* max seconds worth of delta per txg */ 112 113 /* 114 * Prepare the txg subsystem. 115 */ 116 void 117 txg_init(dsl_pool_t *dp, uint64_t txg) 118 { 119 tx_state_t *tx = &dp->dp_tx; 120 int c; 121 bzero(tx, sizeof (tx_state_t)); 122 123 tx->tx_cpu = kmem_zalloc(max_ncpus * sizeof (tx_cpu_t), KM_SLEEP); 124 125 for (c = 0; c < max_ncpus; c++) { 126 int i; 127 128 mutex_init(&tx->tx_cpu[c].tc_lock, NULL, MUTEX_DEFAULT, NULL); 129 mutex_init(&tx->tx_cpu[c].tc_open_lock, NULL, MUTEX_DEFAULT, 130 NULL); 131 for (i = 0; i < TXG_SIZE; i++) { 132 cv_init(&tx->tx_cpu[c].tc_cv[i], NULL, CV_DEFAULT, 133 NULL); 134 list_create(&tx->tx_cpu[c].tc_callbacks[i], 135 sizeof (dmu_tx_callback_t), 136 offsetof(dmu_tx_callback_t, dcb_node)); 137 } 138 } 139 140 mutex_init(&tx->tx_sync_lock, NULL, MUTEX_DEFAULT, NULL); 141 142 cv_init(&tx->tx_sync_more_cv, NULL, CV_DEFAULT, NULL); 143 cv_init(&tx->tx_sync_done_cv, NULL, CV_DEFAULT, NULL); 144 cv_init(&tx->tx_quiesce_more_cv, NULL, CV_DEFAULT, NULL); 145 cv_init(&tx->tx_quiesce_done_cv, NULL, CV_DEFAULT, NULL); 146 cv_init(&tx->tx_exit_cv, NULL, CV_DEFAULT, NULL); 147 148 tx->tx_open_txg = txg; 149 } 150 151 /* 152 * Close down the txg subsystem. 153 */ 154 void 155 txg_fini(dsl_pool_t *dp) 156 { 157 tx_state_t *tx = &dp->dp_tx; 158 int c; 159 160 ASSERT(tx->tx_threads == 0); 161 162 mutex_destroy(&tx->tx_sync_lock); 163 164 cv_destroy(&tx->tx_sync_more_cv); 165 cv_destroy(&tx->tx_sync_done_cv); 166 cv_destroy(&tx->tx_quiesce_more_cv); 167 cv_destroy(&tx->tx_quiesce_done_cv); 168 cv_destroy(&tx->tx_exit_cv); 169 170 for (c = 0; c < max_ncpus; c++) { 171 int i; 172 173 mutex_destroy(&tx->tx_cpu[c].tc_open_lock); 174 mutex_destroy(&tx->tx_cpu[c].tc_lock); 175 for (i = 0; i < TXG_SIZE; i++) { 176 cv_destroy(&tx->tx_cpu[c].tc_cv[i]); 177 list_destroy(&tx->tx_cpu[c].tc_callbacks[i]); 178 } 179 } 180 181 if (tx->tx_commit_cb_taskq != NULL) 182 taskq_destroy(tx->tx_commit_cb_taskq); 183 184 kmem_free(tx->tx_cpu, max_ncpus * sizeof (tx_cpu_t)); 185 186 bzero(tx, sizeof (tx_state_t)); 187 } 188 189 /* 190 * Start syncing transaction groups. 191 */ 192 void 193 txg_sync_start(dsl_pool_t *dp) 194 { 195 tx_state_t *tx = &dp->dp_tx; 196 197 mutex_enter(&tx->tx_sync_lock); 198 199 dprintf("pool %p\n", dp); 200 201 ASSERT(tx->tx_threads == 0); 202 203 tx->tx_threads = 2; 204 205 tx->tx_quiesce_thread = thread_create(NULL, 0, txg_quiesce_thread, 206 dp, 0, &p0, TS_RUN, minclsyspri); 207 208 /* 209 * The sync thread can need a larger-than-default stack size on 210 * 32-bit x86. This is due in part to nested pools and 211 * scrub_visitbp() recursion. 212 */ 213 tx->tx_sync_thread = thread_create(NULL, 32<<10, txg_sync_thread, 214 dp, 0, &p0, TS_RUN, minclsyspri); 215 216 mutex_exit(&tx->tx_sync_lock); 217 } 218 219 static void 220 txg_thread_enter(tx_state_t *tx, callb_cpr_t *cpr) 221 { 222 CALLB_CPR_INIT(cpr, &tx->tx_sync_lock, callb_generic_cpr, FTAG); 223 mutex_enter(&tx->tx_sync_lock); 224 } 225 226 static void 227 txg_thread_exit(tx_state_t *tx, callb_cpr_t *cpr, kthread_t **tpp) 228 { 229 ASSERT(*tpp != NULL); 230 *tpp = NULL; 231 tx->tx_threads--; 232 cv_broadcast(&tx->tx_exit_cv); 233 CALLB_CPR_EXIT(cpr); /* drops &tx->tx_sync_lock */ 234 thread_exit(); 235 } 236 237 static void 238 txg_thread_wait(tx_state_t *tx, callb_cpr_t *cpr, kcondvar_t *cv, clock_t time) 239 { 240 CALLB_CPR_SAFE_BEGIN(cpr); 241 242 if (time) 243 (void) cv_timedwait(cv, &tx->tx_sync_lock, 244 ddi_get_lbolt() + time); 245 else 246 cv_wait(cv, &tx->tx_sync_lock); 247 248 CALLB_CPR_SAFE_END(cpr, &tx->tx_sync_lock); 249 } 250 251 /* 252 * Stop syncing transaction groups. 253 */ 254 void 255 txg_sync_stop(dsl_pool_t *dp) 256 { 257 tx_state_t *tx = &dp->dp_tx; 258 259 dprintf("pool %p\n", dp); 260 /* 261 * Finish off any work in progress. 262 */ 263 ASSERT(tx->tx_threads == 2); 264 265 /* 266 * We need to ensure that we've vacated the deferred space_maps. 267 */ 268 txg_wait_synced(dp, tx->tx_open_txg + TXG_DEFER_SIZE); 269 270 /* 271 * Wake all sync threads and wait for them to die. 272 */ 273 mutex_enter(&tx->tx_sync_lock); 274 275 ASSERT(tx->tx_threads == 2); 276 277 tx->tx_exiting = 1; 278 279 cv_broadcast(&tx->tx_quiesce_more_cv); 280 cv_broadcast(&tx->tx_quiesce_done_cv); 281 cv_broadcast(&tx->tx_sync_more_cv); 282 283 while (tx->tx_threads != 0) 284 cv_wait(&tx->tx_exit_cv, &tx->tx_sync_lock); 285 286 tx->tx_exiting = 0; 287 288 mutex_exit(&tx->tx_sync_lock); 289 } 290 291 uint64_t 292 txg_hold_open(dsl_pool_t *dp, txg_handle_t *th) 293 { 294 tx_state_t *tx = &dp->dp_tx; 295 tx_cpu_t *tc = &tx->tx_cpu[CPU_SEQID]; 296 uint64_t txg; 297 298 mutex_enter(&tc->tc_open_lock); 299 txg = tx->tx_open_txg; 300 301 mutex_enter(&tc->tc_lock); 302 tc->tc_count[txg & TXG_MASK]++; 303 mutex_exit(&tc->tc_lock); 304 305 th->th_cpu = tc; 306 th->th_txg = txg; 307 308 return (txg); 309 } 310 311 void 312 txg_rele_to_quiesce(txg_handle_t *th) 313 { 314 tx_cpu_t *tc = th->th_cpu; 315 316 ASSERT(!MUTEX_HELD(&tc->tc_lock)); 317 mutex_exit(&tc->tc_open_lock); 318 } 319 320 void 321 txg_register_callbacks(txg_handle_t *th, list_t *tx_callbacks) 322 { 323 tx_cpu_t *tc = th->th_cpu; 324 int g = th->th_txg & TXG_MASK; 325 326 mutex_enter(&tc->tc_lock); 327 list_move_tail(&tc->tc_callbacks[g], tx_callbacks); 328 mutex_exit(&tc->tc_lock); 329 } 330 331 void 332 txg_rele_to_sync(txg_handle_t *th) 333 { 334 tx_cpu_t *tc = th->th_cpu; 335 int g = th->th_txg & TXG_MASK; 336 337 mutex_enter(&tc->tc_lock); 338 ASSERT(tc->tc_count[g] != 0); 339 if (--tc->tc_count[g] == 0) 340 cv_broadcast(&tc->tc_cv[g]); 341 mutex_exit(&tc->tc_lock); 342 343 th->th_cpu = NULL; /* defensive */ 344 } 345 346 static void 347 txg_quiesce(dsl_pool_t *dp, uint64_t txg) 348 { 349 tx_state_t *tx = &dp->dp_tx; 350 int g = txg & TXG_MASK; 351 int c; 352 353 /* 354 * Grab all tc_open_locks so nobody else can get into this txg. 355 */ 356 for (c = 0; c < max_ncpus; c++) 357 mutex_enter(&tx->tx_cpu[c].tc_open_lock); 358 359 ASSERT(txg == tx->tx_open_txg); 360 tx->tx_open_txg++; 361 362 DTRACE_PROBE2(txg__quiescing, dsl_pool_t *, dp, uint64_t, txg); 363 DTRACE_PROBE2(txg__opened, dsl_pool_t *, dp, uint64_t, tx->tx_open_txg); 364 365 /* 366 * Now that we've incremented tx_open_txg, we can let threads 367 * enter the next transaction group. 368 */ 369 for (c = 0; c < max_ncpus; c++) 370 mutex_exit(&tx->tx_cpu[c].tc_open_lock); 371 372 /* 373 * Quiesce the transaction group by waiting for everyone to txg_exit(). 374 */ 375 for (c = 0; c < max_ncpus; c++) { 376 tx_cpu_t *tc = &tx->tx_cpu[c]; 377 mutex_enter(&tc->tc_lock); 378 while (tc->tc_count[g] != 0) 379 cv_wait(&tc->tc_cv[g], &tc->tc_lock); 380 mutex_exit(&tc->tc_lock); 381 } 382 } 383 384 static void 385 txg_do_callbacks(list_t *cb_list) 386 { 387 dmu_tx_do_callbacks(cb_list, 0); 388 389 list_destroy(cb_list); 390 391 kmem_free(cb_list, sizeof (list_t)); 392 } 393 394 /* 395 * Dispatch the commit callbacks registered on this txg to worker threads. 396 */ 397 static void 398 txg_dispatch_callbacks(dsl_pool_t *dp, uint64_t txg) 399 { 400 int c; 401 tx_state_t *tx = &dp->dp_tx; 402 list_t *cb_list; 403 404 for (c = 0; c < max_ncpus; c++) { 405 tx_cpu_t *tc = &tx->tx_cpu[c]; 406 /* No need to lock tx_cpu_t at this point */ 407 408 int g = txg & TXG_MASK; 409 410 if (list_is_empty(&tc->tc_callbacks[g])) 411 continue; 412 413 if (tx->tx_commit_cb_taskq == NULL) { 414 /* 415 * Commit callback taskq hasn't been created yet. 416 */ 417 tx->tx_commit_cb_taskq = taskq_create("tx_commit_cb", 418 max_ncpus, minclsyspri, max_ncpus, max_ncpus * 2, 419 TASKQ_PREPOPULATE); 420 } 421 422 cb_list = kmem_alloc(sizeof (list_t), KM_SLEEP); 423 list_create(cb_list, sizeof (dmu_tx_callback_t), 424 offsetof(dmu_tx_callback_t, dcb_node)); 425 426 list_move_tail(&tc->tc_callbacks[g], cb_list); 427 428 (void) taskq_dispatch(tx->tx_commit_cb_taskq, (task_func_t *) 429 txg_do_callbacks, cb_list, TQ_SLEEP); 430 } 431 } 432 433 static void 434 txg_sync_thread(dsl_pool_t *dp) 435 { 436 spa_t *spa = dp->dp_spa; 437 tx_state_t *tx = &dp->dp_tx; 438 callb_cpr_t cpr; 439 uint64_t start, delta; 440 441 txg_thread_enter(tx, &cpr); 442 443 start = delta = 0; 444 for (;;) { 445 uint64_t timer, timeout = zfs_txg_timeout * hz; 446 uint64_t txg; 447 448 /* 449 * We sync when we're scanning, there's someone waiting 450 * on us, or the quiesce thread has handed off a txg to 451 * us, or we have reached our timeout. 452 */ 453 timer = (delta >= timeout ? 0 : timeout - delta); 454 while (!dsl_scan_active(dp->dp_scan) && 455 !tx->tx_exiting && timer > 0 && 456 tx->tx_synced_txg >= tx->tx_sync_txg_waiting && 457 tx->tx_quiesced_txg == 0) { 458 dprintf("waiting; tx_synced=%llu waiting=%llu dp=%p\n", 459 tx->tx_synced_txg, tx->tx_sync_txg_waiting, dp); 460 txg_thread_wait(tx, &cpr, &tx->tx_sync_more_cv, timer); 461 delta = ddi_get_lbolt() - start; 462 timer = (delta > timeout ? 0 : timeout - delta); 463 } 464 465 /* 466 * Wait until the quiesce thread hands off a txg to us, 467 * prompting it to do so if necessary. 468 */ 469 while (!tx->tx_exiting && tx->tx_quiesced_txg == 0) { 470 if (tx->tx_quiesce_txg_waiting < tx->tx_open_txg+1) 471 tx->tx_quiesce_txg_waiting = tx->tx_open_txg+1; 472 cv_broadcast(&tx->tx_quiesce_more_cv); 473 txg_thread_wait(tx, &cpr, &tx->tx_quiesce_done_cv, 0); 474 } 475 476 if (tx->tx_exiting) 477 txg_thread_exit(tx, &cpr, &tx->tx_sync_thread); 478 479 /* 480 * Consume the quiesced txg which has been handed off to 481 * us. This may cause the quiescing thread to now be 482 * able to quiesce another txg, so we must signal it. 483 */ 484 txg = tx->tx_quiesced_txg; 485 tx->tx_quiesced_txg = 0; 486 tx->tx_syncing_txg = txg; 487 DTRACE_PROBE2(txg__syncing, dsl_pool_t *, dp, uint64_t, txg); 488 cv_broadcast(&tx->tx_quiesce_more_cv); 489 490 dprintf("txg=%llu quiesce_txg=%llu sync_txg=%llu\n", 491 txg, tx->tx_quiesce_txg_waiting, tx->tx_sync_txg_waiting); 492 mutex_exit(&tx->tx_sync_lock); 493 494 start = ddi_get_lbolt(); 495 spa_sync(spa, txg); 496 delta = ddi_get_lbolt() - start; 497 498 mutex_enter(&tx->tx_sync_lock); 499 tx->tx_synced_txg = txg; 500 tx->tx_syncing_txg = 0; 501 DTRACE_PROBE2(txg__synced, dsl_pool_t *, dp, uint64_t, txg); 502 cv_broadcast(&tx->tx_sync_done_cv); 503 504 /* 505 * Dispatch commit callbacks to worker threads. 506 */ 507 txg_dispatch_callbacks(dp, txg); 508 } 509 } 510 511 static void 512 txg_quiesce_thread(dsl_pool_t *dp) 513 { 514 tx_state_t *tx = &dp->dp_tx; 515 callb_cpr_t cpr; 516 517 txg_thread_enter(tx, &cpr); 518 519 for (;;) { 520 uint64_t txg; 521 522 /* 523 * We quiesce when there's someone waiting on us. 524 * However, we can only have one txg in "quiescing" or 525 * "quiesced, waiting to sync" state. So we wait until 526 * the "quiesced, waiting to sync" txg has been consumed 527 * by the sync thread. 528 */ 529 while (!tx->tx_exiting && 530 (tx->tx_open_txg >= tx->tx_quiesce_txg_waiting || 531 tx->tx_quiesced_txg != 0)) 532 txg_thread_wait(tx, &cpr, &tx->tx_quiesce_more_cv, 0); 533 534 if (tx->tx_exiting) 535 txg_thread_exit(tx, &cpr, &tx->tx_quiesce_thread); 536 537 txg = tx->tx_open_txg; 538 dprintf("txg=%llu quiesce_txg=%llu sync_txg=%llu\n", 539 txg, tx->tx_quiesce_txg_waiting, 540 tx->tx_sync_txg_waiting); 541 mutex_exit(&tx->tx_sync_lock); 542 txg_quiesce(dp, txg); 543 mutex_enter(&tx->tx_sync_lock); 544 545 /* 546 * Hand this txg off to the sync thread. 547 */ 548 dprintf("quiesce done, handing off txg %llu\n", txg); 549 tx->tx_quiesced_txg = txg; 550 DTRACE_PROBE2(txg__quiesced, dsl_pool_t *, dp, uint64_t, txg); 551 cv_broadcast(&tx->tx_sync_more_cv); 552 cv_broadcast(&tx->tx_quiesce_done_cv); 553 } 554 } 555 556 /* 557 * Delay this thread by delay nanoseconds if we are still in the open 558 * transaction group and there is already a waiting txg quiesing or quiesced. 559 * Abort the delay if this txg stalls or enters the quiesing state. 560 */ 561 void 562 txg_delay(dsl_pool_t *dp, uint64_t txg, hrtime_t delay, hrtime_t resolution) 563 { 564 tx_state_t *tx = &dp->dp_tx; 565 hrtime_t start = gethrtime(); 566 567 /* don't delay if this txg could transition to quiesing immediately */ 568 if (tx->tx_open_txg > txg || 569 tx->tx_syncing_txg == txg-1 || tx->tx_synced_txg == txg-1) 570 return; 571 572 mutex_enter(&tx->tx_sync_lock); 573 if (tx->tx_open_txg > txg || tx->tx_synced_txg == txg-1) { 574 mutex_exit(&tx->tx_sync_lock); 575 return; 576 } 577 578 while (gethrtime() - start < delay && 579 tx->tx_syncing_txg < txg-1 && !txg_stalled(dp)) { 580 (void) cv_timedwait_hires(&tx->tx_quiesce_more_cv, 581 &tx->tx_sync_lock, delay, resolution, 0); 582 } 583 584 mutex_exit(&tx->tx_sync_lock); 585 } 586 587 void 588 txg_wait_synced(dsl_pool_t *dp, uint64_t txg) 589 { 590 tx_state_t *tx = &dp->dp_tx; 591 592 ASSERT(!dsl_pool_config_held(dp)); 593 594 mutex_enter(&tx->tx_sync_lock); 595 ASSERT(tx->tx_threads == 2); 596 if (txg == 0) 597 txg = tx->tx_open_txg + TXG_DEFER_SIZE; 598 if (tx->tx_sync_txg_waiting < txg) 599 tx->tx_sync_txg_waiting = txg; 600 dprintf("txg=%llu quiesce_txg=%llu sync_txg=%llu\n", 601 txg, tx->tx_quiesce_txg_waiting, tx->tx_sync_txg_waiting); 602 while (tx->tx_synced_txg < txg) { 603 dprintf("broadcasting sync more " 604 "tx_synced=%llu waiting=%llu dp=%p\n", 605 tx->tx_synced_txg, tx->tx_sync_txg_waiting, dp); 606 cv_broadcast(&tx->tx_sync_more_cv); 607 cv_wait(&tx->tx_sync_done_cv, &tx->tx_sync_lock); 608 } 609 mutex_exit(&tx->tx_sync_lock); 610 } 611 612 void 613 txg_wait_open(dsl_pool_t *dp, uint64_t txg) 614 { 615 tx_state_t *tx = &dp->dp_tx; 616 617 ASSERT(!dsl_pool_config_held(dp)); 618 619 mutex_enter(&tx->tx_sync_lock); 620 ASSERT(tx->tx_threads == 2); 621 if (txg == 0) 622 txg = tx->tx_open_txg + 1; 623 if (tx->tx_quiesce_txg_waiting < txg) 624 tx->tx_quiesce_txg_waiting = txg; 625 dprintf("txg=%llu quiesce_txg=%llu sync_txg=%llu\n", 626 txg, tx->tx_quiesce_txg_waiting, tx->tx_sync_txg_waiting); 627 while (tx->tx_open_txg < txg) { 628 cv_broadcast(&tx->tx_quiesce_more_cv); 629 cv_wait(&tx->tx_quiesce_done_cv, &tx->tx_sync_lock); 630 } 631 mutex_exit(&tx->tx_sync_lock); 632 } 633 634 boolean_t 635 txg_stalled(dsl_pool_t *dp) 636 { 637 tx_state_t *tx = &dp->dp_tx; 638 return (tx->tx_quiesce_txg_waiting > tx->tx_open_txg); 639 } 640 641 boolean_t 642 txg_sync_waiting(dsl_pool_t *dp) 643 { 644 tx_state_t *tx = &dp->dp_tx; 645 646 return (tx->tx_syncing_txg <= tx->tx_sync_txg_waiting || 647 tx->tx_quiesced_txg != 0); 648 } 649 650 /* 651 * Per-txg object lists. 652 */ 653 void 654 txg_list_create(txg_list_t *tl, size_t offset) 655 { 656 int t; 657 658 mutex_init(&tl->tl_lock, NULL, MUTEX_DEFAULT, NULL); 659 660 tl->tl_offset = offset; 661 662 for (t = 0; t < TXG_SIZE; t++) 663 tl->tl_head[t] = NULL; 664 } 665 666 void 667 txg_list_destroy(txg_list_t *tl) 668 { 669 int t; 670 671 for (t = 0; t < TXG_SIZE; t++) 672 ASSERT(txg_list_empty(tl, t)); 673 674 mutex_destroy(&tl->tl_lock); 675 } 676 677 boolean_t 678 txg_list_empty(txg_list_t *tl, uint64_t txg) 679 { 680 return (tl->tl_head[txg & TXG_MASK] == NULL); 681 } 682 683 /* 684 * Add an entry to the list (unless it's already on the list). 685 * Returns B_TRUE if it was actually added. 686 */ 687 boolean_t 688 txg_list_add(txg_list_t *tl, void *p, uint64_t txg) 689 { 690 int t = txg & TXG_MASK; 691 txg_node_t *tn = (txg_node_t *)((char *)p + tl->tl_offset); 692 boolean_t add; 693 694 mutex_enter(&tl->tl_lock); 695 add = (tn->tn_member[t] == 0); 696 if (add) { 697 tn->tn_member[t] = 1; 698 tn->tn_next[t] = tl->tl_head[t]; 699 tl->tl_head[t] = tn; 700 } 701 mutex_exit(&tl->tl_lock); 702 703 return (add); 704 } 705 706 /* 707 * Add an entry to the end of the list, unless it's already on the list. 708 * (walks list to find end) 709 * Returns B_TRUE if it was actually added. 710 */ 711 boolean_t 712 txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg) 713 { 714 int t = txg & TXG_MASK; 715 txg_node_t *tn = (txg_node_t *)((char *)p + tl->tl_offset); 716 boolean_t add; 717 718 mutex_enter(&tl->tl_lock); 719 add = (tn->tn_member[t] == 0); 720 if (add) { 721 txg_node_t **tp; 722 723 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) 724 continue; 725 726 tn->tn_member[t] = 1; 727 tn->tn_next[t] = NULL; 728 *tp = tn; 729 } 730 mutex_exit(&tl->tl_lock); 731 732 return (add); 733 } 734 735 /* 736 * Remove the head of the list and return it. 737 */ 738 void * 739 txg_list_remove(txg_list_t *tl, uint64_t txg) 740 { 741 int t = txg & TXG_MASK; 742 txg_node_t *tn; 743 void *p = NULL; 744 745 mutex_enter(&tl->tl_lock); 746 if ((tn = tl->tl_head[t]) != NULL) { 747 p = (char *)tn - tl->tl_offset; 748 tl->tl_head[t] = tn->tn_next[t]; 749 tn->tn_next[t] = NULL; 750 tn->tn_member[t] = 0; 751 } 752 mutex_exit(&tl->tl_lock); 753 754 return (p); 755 } 756 757 /* 758 * Remove a specific item from the list and return it. 759 */ 760 void * 761 txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg) 762 { 763 int t = txg & TXG_MASK; 764 txg_node_t *tn, **tp; 765 766 mutex_enter(&tl->tl_lock); 767 768 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { 769 if ((char *)tn - tl->tl_offset == p) { 770 *tp = tn->tn_next[t]; 771 tn->tn_next[t] = NULL; 772 tn->tn_member[t] = 0; 773 mutex_exit(&tl->tl_lock); 774 return (p); 775 } 776 } 777 778 mutex_exit(&tl->tl_lock); 779 780 return (NULL); 781 } 782 783 boolean_t 784 txg_list_member(txg_list_t *tl, void *p, uint64_t txg) 785 { 786 int t = txg & TXG_MASK; 787 txg_node_t *tn = (txg_node_t *)((char *)p + tl->tl_offset); 788 789 return (tn->tn_member[t] != 0); 790 } 791 792 /* 793 * Walk a txg list -- only safe if you know it's not changing. 794 */ 795 void * 796 txg_list_head(txg_list_t *tl, uint64_t txg) 797 { 798 int t = txg & TXG_MASK; 799 txg_node_t *tn = tl->tl_head[t]; 800 801 return (tn == NULL ? NULL : (char *)tn - tl->tl_offset); 802 } 803 804 void * 805 txg_list_next(txg_list_t *tl, void *p, uint64_t txg) 806 { 807 int t = txg & TXG_MASK; 808 txg_node_t *tn = (txg_node_t *)((char *)p + tl->tl_offset); 809 810 tn = tn->tn_next[t]; 811 812 return (tn == NULL ? NULL : (char *)tn - tl->tl_offset); 813 } 814