]> granicus.if.org Git - zfs/commitdiff
OpenZFS 8607 - variable set but not used
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 8 Nov 2017 17:09:45 +0000 (09:09 -0800)
committerGitHub <noreply@github.com>
Wed, 8 Nov 2017 17:09:45 +0000 (09:09 -0800)
Reviewed by: Yuri Pankov <yuripv@gmx.com>
Reviewed by: Igor Kozhukhov <igor@dilos.org>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Approved by: Robert Mustacchi <rm@joyent.com>
Authored by: Toomas Soome <tsoome@me.com>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Ported-by: Brian Behlendorf <behlendorf1@llnl.gov>
OpenZFS-issue: https://www.illumos.org/issues/8607
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/b852c2f5
Closes #6842

module/zfs/dsl_pool.c
module/zfs/zfs_ioctl.c

index 6f435dcc2c4445a3e21e7b72d33f5862be88fa9f..43fd90861c600a9f7684545c75ec105a11d43c8a 100644 (file)
@@ -402,7 +402,6 @@ dsl_pool_create(spa_t *spa, nvlist_t *zplprops, dsl_crypto_params_t *dcp,
        int err;
        dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
        dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg);
-       objset_t *os;
        dsl_dataset_t *ds;
        uint64_t obj;
 
@@ -465,12 +464,15 @@ dsl_pool_create(spa_t *spa, nvlist_t *zplprops, dsl_crypto_params_t *dcp,
 
        /* create the root objset */
        VERIFY0(dsl_dataset_hold_obj(dp, obj, FTAG, &ds));
-       rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
-       VERIFY(NULL != (os = dmu_objset_create_impl(dp->dp_spa, ds,
-           dsl_dataset_get_blkptr(ds), DMU_OST_ZFS, tx)));
-       rrw_exit(&ds->ds_bp_rwlock, FTAG);
 #ifdef _KERNEL
-       zfs_create_fs(os, kcred, zplprops, tx);
+       {
+               objset_t *os;
+               rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
+               os = dmu_objset_create_impl(dp->dp_spa, ds,
+                   dsl_dataset_get_blkptr(ds), DMU_OST_ZFS, tx);
+               rrw_exit(&ds->ds_bp_rwlock, FTAG);
+               zfs_create_fs(os, kcred, zplprops, tx);
+       }
 #endif
        dsl_dataset_rele(ds, FTAG);
 
index 1d94f9ca09e414717cbd61e4b44e6fb126db0005..9bd9b58bad8cc18ebd996c1d27632cdac3d11a88 100644 (file)
@@ -5911,10 +5911,6 @@ zfs_ioc_send_space(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
        dsl_dataset_t *tosnap;
        int error;
        char *fromname;
-       /* LINTED E_FUNC_SET_NOT_USED */
-       boolean_t largeblockok;
-       /* LINTED E_FUNC_SET_NOT_USED */
-       boolean_t embedok;
        boolean_t compressok;
        boolean_t rawok;
        uint64_t space;
@@ -5929,8 +5925,6 @@ zfs_ioc_send_space(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
                return (error);
        }
 
-       largeblockok = nvlist_exists(innvl, "largeblockok");
-       embedok = nvlist_exists(innvl, "embedok");
        compressok = nvlist_exists(innvl, "compressok");
        rawok = nvlist_exists(innvl, "rawok");
 
@@ -5973,7 +5967,9 @@ zfs_ioc_send_space(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
                        goto out;
                }
        } else {
-               // If estimating the size of a full send, use dmu_send_estimate
+               /*
+                * If estimating the size of a full send, use dmu_send_estimate.
+                */
                error = dmu_send_estimate(tosnap, NULL, compressok || rawok,
                    &space);
        }