diff options
author | Paul Dagnelie <[email protected]> | 2022-01-06 11:12:53 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-06 11:12:53 -0800 |
commit | 399b98198ae2e7c003448bf6b9508879c2a3ed83 (patch) | |
tree | ac75993028048d6069069306697dbb573af89391 /cmd | |
parent | 0175272f6463dcfe588480c459c065cc4a78ba08 (diff) |
Revert "zfs list: Allow more fields in ZFS_ITER_SIMPLE mode"
This reverts commit f6a0dac84af2fba9c306a3a307ea7aafcbe32d2b.
Reviewed-by: Matthew Ahrens <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Mark Maybee <[email protected]>
Signed-off-by: Paul Dagnelie <[email protected]>
Closes #12938
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/zfs/zfs_iter.c | 64 | ||||
-rw-r--r-- | cmd/zfs/zfs_iter.h | 12 | ||||
-rw-r--r-- | cmd/zfs/zfs_main.c | 43 | ||||
-rw-r--r-- | cmd/zpool/zpool_main.c | 2 |
4 files changed, 38 insertions, 83 deletions
diff --git a/cmd/zfs/zfs_iter.c b/cmd/zfs/zfs_iter.c index 7d1eae07c..69b802f77 100644 --- a/cmd/zfs/zfs_iter.c +++ b/cmd/zfs/zfs_iter.c @@ -144,20 +144,19 @@ zfs_callback(zfs_handle_t *zhp, void *data) (cb->cb_types & (ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME))) && zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) { - (void) zfs_iter_filesystems(zhp, cb->cb_flags, - zfs_callback, data); + (void) zfs_iter_filesystems(zhp, zfs_callback, data); } if (((zfs_get_type(zhp) & (ZFS_TYPE_SNAPSHOT | ZFS_TYPE_BOOKMARK)) == 0) && include_snaps) { - (void) zfs_iter_snapshots(zhp, cb->cb_flags, + (void) zfs_iter_snapshots(zhp, + (cb->cb_flags & ZFS_ITER_SIMPLE) != 0, zfs_callback, data, 0, 0); } if (((zfs_get_type(zhp) & (ZFS_TYPE_SNAPSHOT | ZFS_TYPE_BOOKMARK)) == 0) && include_bmarks) { - (void) zfs_iter_bookmarks(zhp, cb->cb_flags, - zfs_callback, data); + (void) zfs_iter_bookmarks(zhp, zfs_callback, data); } cb->cb_depth--; @@ -213,58 +212,11 @@ zfs_free_sort_columns(zfs_sort_column_t *sc) } } -/* - * Return true if all of the properties to be sorted are populated by - * dsl_dataset_fast_stat(). Note that sc == NULL (no sort) means we - * don't need any extra properties, so returns true. - */ -boolean_t -zfs_sort_only_by_fast(const zfs_sort_column_t *sc) -{ - while (sc != NULL) { - switch (sc->sc_prop) { - case ZFS_PROP_NAME: - case ZFS_PROP_GUID: - case ZFS_PROP_CREATETXG: - case ZFS_PROP_NUMCLONES: - case ZFS_PROP_INCONSISTENT: - case ZFS_PROP_REDACTED: - case ZFS_PROP_ORIGIN: - break; - default: - return (B_FALSE); - } - sc = sc->sc_next; - } - - return (B_TRUE); -} - -boolean_t -zfs_list_only_by_fast(const zprop_list_t *p) +int +zfs_sort_only_by_name(const zfs_sort_column_t *sc) { - if (p == NULL) { - /* NULL means 'all' so we can't use simple mode */ - return (B_FALSE); - } - - while (p != NULL) { - switch (p->pl_prop) { - case ZFS_PROP_NAME: - case ZFS_PROP_GUID: - case ZFS_PROP_CREATETXG: - case ZFS_PROP_NUMCLONES: - case ZFS_PROP_INCONSISTENT: - case ZFS_PROP_REDACTED: - case ZFS_PROP_ORIGIN: - break; - default: - return (B_FALSE); - } - p = p->pl_next; - } - - return (B_TRUE); + return (sc != NULL && sc->sc_next == NULL && + sc->sc_prop == ZFS_PROP_NAME); } static int diff --git a/cmd/zfs/zfs_iter.h b/cmd/zfs/zfs_iter.h index d93d7e322..2697fbdca 100644 --- a/cmd/zfs/zfs_iter.h +++ b/cmd/zfs/zfs_iter.h @@ -40,13 +40,19 @@ typedef struct zfs_sort_column { boolean_t sc_reverse; } zfs_sort_column_t; +#define ZFS_ITER_RECURSE (1 << 0) +#define ZFS_ITER_ARGS_CAN_BE_PATHS (1 << 1) +#define ZFS_ITER_PROP_LISTSNAPS (1 << 2) +#define ZFS_ITER_DEPTH_LIMIT (1 << 3) +#define ZFS_ITER_RECVD_PROPS (1 << 4) +#define ZFS_ITER_LITERAL_PROPS (1 << 5) +#define ZFS_ITER_SIMPLE (1 << 6) + int zfs_for_each(int, char **, int options, zfs_type_t, zfs_sort_column_t *, zprop_list_t **, int, zfs_iter_f, void *); int zfs_add_sort_column(zfs_sort_column_t **, const char *, boolean_t); void zfs_free_sort_columns(zfs_sort_column_t *); -boolean_t zfs_sort_only_by_fast(const zfs_sort_column_t *); -boolean_t zfs_list_only_by_fast(const zprop_list_t *); - +int zfs_sort_only_by_name(const zfs_sort_column_t *); #ifdef __cplusplus } diff --git a/cmd/zfs/zfs_main.c b/cmd/zfs/zfs_main.c index 0ac0711bb..5aa2508c3 100644 --- a/cmd/zfs/zfs_main.c +++ b/cmd/zfs/zfs_main.c @@ -1536,7 +1536,7 @@ destroy_print_snapshots(zfs_handle_t *fs_zhp, destroy_cbdata_t *cb) int err; assert(cb->cb_firstsnap == NULL); assert(cb->cb_prevsnap == NULL); - err = zfs_iter_snapshots_sorted(fs_zhp, 0, destroy_print_cb, cb, 0, 0); + err = zfs_iter_snapshots_sorted(fs_zhp, destroy_print_cb, cb, 0, 0); if (cb->cb_firstsnap != NULL) { uint64_t used = 0; if (err == 0) { @@ -1562,7 +1562,7 @@ snapshot_to_nvl_cb(zfs_handle_t *zhp, void *arg) if (!cb->cb_doclones && !cb->cb_defer_destroy) { cb->cb_target = zhp; cb->cb_first = B_TRUE; - err = zfs_iter_dependents(zhp, 0, B_TRUE, + err = zfs_iter_dependents(zhp, B_TRUE, destroy_check_dependent, cb); } @@ -1580,8 +1580,7 @@ gather_snapshots(zfs_handle_t *zhp, void *arg) destroy_cbdata_t *cb = arg; int err = 0; - err = zfs_iter_snapspec(zhp, 0, cb->cb_snapspec, - snapshot_to_nvl_cb, cb); + err = zfs_iter_snapspec(zhp, cb->cb_snapspec, snapshot_to_nvl_cb, cb); if (err == ENOENT) err = 0; if (err != 0) @@ -1594,7 +1593,7 @@ gather_snapshots(zfs_handle_t *zhp, void *arg) } if (cb->cb_recurse) - err = zfs_iter_filesystems(zhp, 0, gather_snapshots, cb); + err = zfs_iter_filesystems(zhp, gather_snapshots, cb); out: zfs_close(zhp); @@ -1619,7 +1618,7 @@ destroy_clones(destroy_cbdata_t *cb) * false while destroying the clones. */ cb->cb_defer_destroy = B_FALSE; - err = zfs_iter_dependents(zhp, 0, B_FALSE, + err = zfs_iter_dependents(zhp, B_FALSE, destroy_callback, cb); cb->cb_defer_destroy = defer; zfs_close(zhp); @@ -1830,7 +1829,7 @@ zfs_do_destroy(int argc, char **argv) */ cb.cb_first = B_TRUE; if (!cb.cb_doclones && - zfs_iter_dependents(zhp, 0, B_TRUE, destroy_check_dependent, + zfs_iter_dependents(zhp, B_TRUE, destroy_check_dependent, &cb) != 0) { rv = 1; goto out; @@ -1841,7 +1840,7 @@ zfs_do_destroy(int argc, char **argv) goto out; } cb.cb_batchedsnaps = fnvlist_alloc(); - if (zfs_iter_dependents(zhp, 0, B_FALSE, destroy_callback, + if (zfs_iter_dependents(zhp, B_FALSE, destroy_callback, &cb) != 0) { rv = 1; goto out; @@ -3706,6 +3705,13 @@ zfs_do_list(int argc, char **argv) fields = default_fields; /* + * If we are only going to list snapshot names and sort by name, + * then we can use faster version. + */ + if (strcmp(fields, "name") == 0 && zfs_sort_only_by_name(sortcol)) + flags |= ZFS_ITER_SIMPLE; + + /* * If "-o space" and no types were specified, don't display snapshots. */ if (strcmp(fields, "space") == 0 && types_specified == B_FALSE) @@ -3732,15 +3738,6 @@ zfs_do_list(int argc, char **argv) cb.cb_first = B_TRUE; - /* - * If we are only going to list and sort by properties that are "fast" - * then we can use "simple" mode and avoid populating the properties - * nvlist. - */ - if (zfs_list_only_by_fast(cb.cb_proplist) && - zfs_sort_only_by_fast(sortcol)) - flags |= ZFS_ITER_SIMPLE; - ret = zfs_for_each(argc, argv, flags, types, sortcol, &cb.cb_proplist, limit, list_callback, &cb); @@ -4051,7 +4048,7 @@ rollback_check(zfs_handle_t *zhp, void *data) } if (cbp->cb_recurse) { - if (zfs_iter_dependents(zhp, 0, B_TRUE, + if (zfs_iter_dependents(zhp, B_TRUE, rollback_check_dependent, cbp) != 0) { zfs_close(zhp); return (-1); @@ -4150,10 +4147,10 @@ zfs_do_rollback(int argc, char **argv) if (cb.cb_create > 0) min_txg = cb.cb_create; - if ((ret = zfs_iter_snapshots(zhp, 0, rollback_check, &cb, + if ((ret = zfs_iter_snapshots(zhp, B_FALSE, rollback_check, &cb, min_txg, 0)) != 0) goto out; - if ((ret = zfs_iter_bookmarks(zhp, 0, rollback_check, &cb)) != 0) + if ((ret = zfs_iter_bookmarks(zhp, rollback_check, &cb)) != 0) goto out; if ((ret = cb.cb_error) != 0) @@ -4295,7 +4292,7 @@ zfs_snapshot_cb(zfs_handle_t *zhp, void *arg) free(name); if (sd->sd_recursive) - rv = zfs_iter_filesystems(zhp, 0, zfs_snapshot_cb, sd); + rv = zfs_iter_filesystems(zhp, zfs_snapshot_cb, sd); zfs_close(zhp); return (rv); } @@ -6281,7 +6278,7 @@ zfs_do_allow_unallow_impl(int argc, char **argv, boolean_t un) if (un && opts.recursive) { struct deleg_perms data = { un, update_perm_nvl }; - if (zfs_iter_filesystems(zhp, 0, set_deleg_perms, + if (zfs_iter_filesystems(zhp, set_deleg_perms, &data) != 0) goto cleanup0; } @@ -6644,7 +6641,7 @@ get_one_dataset(zfs_handle_t *zhp, void *data) /* * Iterate over any nested datasets. */ - if (zfs_iter_filesystems(zhp, 0, get_one_dataset, data) != 0) { + if (zfs_iter_filesystems(zhp, get_one_dataset, data) != 0) { zfs_close(zhp); return (1); } diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index b8462b369..d7cce73d3 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -8807,7 +8807,7 @@ check_unsupp_fs(zfs_handle_t *zhp, void *unsupp_fs) (*count)++; } - zfs_iter_filesystems(zhp, 0, check_unsupp_fs, unsupp_fs); + zfs_iter_filesystems(zhp, check_unsupp_fs, unsupp_fs); zfs_close(zhp); |