Skip to content

Commit ccd5e5c

Browse files
committed
feedback
Signed-off-by: Paul Dagnelie <paul.dagnelie@klarasystems.com>
1 parent e015b43 commit ccd5e5c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmd/zdb/zdb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4810,7 +4810,7 @@ print_label_header(zdb_label_t *label, boolean_t large_label, int l)
48104810
return;
48114811

48124812
(void) printf("------------------------------------\n");
4813-
(void) printf("LABEL(%s) %d %s\n", large_label ? "large" : "small", l,
4813+
(void) printf("LABEL (%s) %d %s\n", large_label ? "large" : "small", l,
48144814
label->cksum_valid ? "" : "(Bad label cksum)");
48154815
(void) printf("------------------------------------\n");
48164816

include/sys/vdev_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ vdev_toc_add_secinfo(nvlist_t *sections, const char *section, uint32_t size,
663663
/*
664664
* Size of embedded boot loader region on each label.
665665
* The total size of the first two labels plus the boot area is 4MB.
666-
* On RAIDZ, this space is overwritten durinvg RAIDZ expansion.
666+
* On RAIDZ, this space is overwritten during RAIDZ expansion.
667667
*/
668668
#define VDEV_BOOT_SIZE (7ULL << 19) /* 3.5M */
669669

tests/zfs-tests/tests/functional/large_label/large_label.kshlib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ BASE_POOL="base"
2222

2323
function uses_old_label
2424
{
25-
zdb -l $1 | grep -q "LABEL(small)"
25+
zdb -l $1 | grep -q "LABEL (small)"
2626
}
2727

2828
function uses_large_label
2929
{
30-
zdb -l $1 | grep -q "LABEL(large)"
30+
zdb -l $1 | grep -q "LABEL (large)"
3131
}

0 commit comments

Comments
 (0)