From 80f4270c61487df1d5df95755d0063f64e22fb4c Mon Sep 17 00:00:00 2001 From: seekfirstleapsecond <38333432+seekfirstleapsecond@users.noreply.github.com> Date: Sat, 5 Jan 2019 04:10:40 -0800 Subject: [PATCH] style fixes Fixed checkstyle complaints: ./module/zfs/txg.c: 558: line > 80 characters ./module/zfs/txg.c: 562: line > 80 characters Signed-off-by: Leap Second --- module/zfs/txg.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/module/zfs/txg.c b/module/zfs/txg.c index 7cf6a5176c..353877d944 100644 --- a/module/zfs/txg.c +++ b/module/zfs/txg.c @@ -551,15 +551,17 @@ txg_sync_thread(void *arg) } if (tx->tx_exiting) { - if (checked_quiescing) + if (checked_quiescing) { txg_thread_exit(tx, &cpr, &tx->tx_sync_thread); - else { + } else { while (tx->tx_threads != 1) - txg_thread_wait(tx, &cpr, &tx->tx_exit_cv, 0); + txg_thread_wait(tx, &cpr, + &tx->tx_exit_cv, 0); if (tx->tx_quiesced_txg) checked_quiescing = B_TRUE; else - txg_thread_exit(tx, &cpr, &tx->tx_sync_thread); + txg_thread_exit(tx, &cpr, + &tx->tx_sync_thread); } }