aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libzfs
diff options
context:
space:
mode:
authorнаб <[email protected]>2022-04-07 04:32:27 +0200
committerBrian Behlendorf <[email protected]>2022-04-13 11:37:03 -0700
commita4e0cee1780cbd8f2cb9a263a0ed8d91dbe68b4a (patch)
tree60880c1be9a8814c915946ab90aa98a1e08206a8 /lib/libzfs
parent16c3290bbe291f3c560cc695b4a9b11a67bbfad3 (diff)
libzfs: import: zpool_clear_label: actually fail if clearing l2arc header fails
Found with -Wunused-but-set-variable on Clang trunk Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #13304
Diffstat (limited to 'lib/libzfs')
-rw-r--r--lib/libzfs/libzfs_import.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libzfs/libzfs_import.c b/lib/libzfs/libzfs_import.c
index 7aed626b2..aeb131d5d 100644
--- a/lib/libzfs/libzfs_import.c
+++ b/lib/libzfs/libzfs_import.c
@@ -137,10 +137,10 @@ zpool_clear_label(int fd)
struct stat64 statbuf;
int l;
vdev_label_t *label;
- l2arc_dev_hdr_phys_t *l2dhdr;
+ l2arc_dev_hdr_phys_t *l2dhdr = NULL;
uint64_t size;
- int labels_cleared = 0, header_cleared = 0;
- boolean_t clear_l2arc_header = B_FALSE;
+ int labels_cleared = 0;
+ boolean_t clear_l2arc_header = B_FALSE, header_cleared = B_FALSE;
if (fstat64_blk(fd, &statbuf) == -1)
return (0);
@@ -210,13 +210,10 @@ zpool_clear_label(int fd)
}
/* Clear the L2ARC header. */
- if (clear_l2arc_header) {
- memset(l2dhdr, 0, sizeof (l2arc_dev_hdr_phys_t));
- if (pwrite64(fd, l2dhdr, sizeof (l2arc_dev_hdr_phys_t),
- VDEV_LABEL_START_SIZE) == sizeof (l2arc_dev_hdr_phys_t)) {
- header_cleared++;
- }
- }
+ if (clear_l2arc_header &&
+ pwrite64(fd, l2dhdr, sizeof (l2arc_dev_hdr_phys_t),
+ VDEV_LABEL_START_SIZE) == sizeof (l2arc_dev_hdr_phys_t))
+ header_cleared = B_TRUE;
free(label);
free(l2dhdr);
@@ -224,6 +221,9 @@ zpool_clear_label(int fd)
if (labels_cleared == 0)
return (-1);
+ if (clear_l2arc_header && !header_cleared)
+ return (-1);
+
return (0);
}