aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}