aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libzfs/os
diff options
context:
space:
mode:
authorнаб <[email protected]>2022-01-21 21:28:19 +0100
committerBrian Behlendorf <[email protected]>2022-03-15 15:13:36 -0700
commit1d77d62f5a77cab85d4b98ecf72a9838f70d6bf1 (patch)
treecc4dda18e898637b2334ec67a428d1e5b63c9c80 /lib/libzfs/os
parent26bbce81739dd24f31d1f23ae352c7b7b108737a (diff)
libspl: include: sys/vtoc.h: reduce to absolute barest minimum
Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12996
Diffstat (limited to 'lib/libzfs/os')
-rw-r--r--lib/libzfs/os/linux/libzfs_pool_os.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libzfs/os/linux/libzfs_pool_os.c b/lib/libzfs/os/linux/libzfs_pool_os.c
index 65a7a89fa..4484a57d3 100644
--- a/lib/libzfs/os/linux/libzfs_pool_os.c
+++ b/lib/libzfs/os/linux/libzfs_pool_os.c
@@ -278,8 +278,9 @@ zpool_label_disk(libzfs_handle_t *hdl, zpool_handle_t *zhp, const char *name)
* Why we use V_USR: V_BACKUP confuses users, and is considered
* disposable by some EFI utilities (since EFI doesn't have a backup
* slice). V_UNASSIGNED is supposed to be used only for zero size
- * partitions, and efi_write() will fail if we use it. V_ROOT, V_BOOT,
- * etc. were all pretty specific. V_USR is as close to reality as we
+ * partitions, and efi_write() will fail if we use it.
+ * Other available types were all pretty specific.
+ * V_USR is as close to reality as we
* can get, in the absence of V_OTHER.
*/
vtoc->efi_parts[0].p_tag = V_USR;