From: Darrick J. Wong Date: Fri, 30 Dec 2022 22:19:36 +0000 (-0800) Subject: populate: fix some weirdness in __populate_check_xfs_agbtree_height X-Git-Tag: v2023.02.19^0 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=9ba85b9a6f0f3246b231519077df7f0ed313c302;p=xfstests-dev.git populate: fix some weirdness in __populate_check_xfs_agbtree_height Use a for loop to scan the AGs, and make all the variables local like you'd expect them to be. Signed-off-by: Darrick J. Wong Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- diff --git a/common/populate b/common/populate index 467252d7..b6f510f3 100644 --- a/common/populate +++ b/common/populate @@ -605,8 +605,8 @@ __populate_check_xfs_attr() { # Check that there's at least one per-AG btree with multiple levels __populate_check_xfs_agbtree_height() { - bt_type="$1" - nr_ags=$(_scratch_xfs_db -c 'sb 0' -c 'p agcount' | awk '{print $3}') + local bt_type="$1" + local agcount=$(_scratch_xfs_db -c 'sb 0' -c 'p agcount' | awk '{print $3}') case "${bt_type}" in "bno"|"cnt"|"rmap"|"refcnt") @@ -626,13 +626,14 @@ __populate_check_xfs_agbtree_height() { ;; esac - seq 0 $((nr_ags - 1)) | while read ag; do - bt_level=$(_scratch_xfs_db -c "${hdr} ${ag}" -c "p ${bt_prefix}level" | awk '{print $3}') + for ((agno = 0; agno < agcount; agno++)); do + bt_level=$(_scratch_xfs_db -c "${hdr} ${agno}" -c "p ${bt_prefix}level" | awk '{print $3}') + # "level" is really the btree height if [ "${bt_level}" -gt 1 ]; then - return 100 + return 0 fi done - test $? -eq 100 || __populate_fail "Failed to create ${bt_type} of sufficient height!" + __populate_fail "Failed to create ${bt_type} of sufficient height!" return 1 }