mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
Treat /dev/vd* as whole disks
Correctly detect /dev/vd devices as whole disks and attempt to create an EFI partition table. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
b97f368d04
commit
2932b6a800
@ -196,6 +196,12 @@ efi_get_info(int fd, struct dk_cinfo *dki_info)
|
||||
rval = sscanf(dev_path, "/dev/%[a-zA-Z0-9]p%hu",
|
||||
dki_info->dki_dname,
|
||||
&dki_info->dki_partition);
|
||||
} else if ((strncmp(dev_path, "/dev/vd", 7) == 0)) {
|
||||
strcpy(dki_info->dki_cname, "vd");
|
||||
dki_info->dki_ctype = DKC_MD;
|
||||
rval = sscanf(dev_path, "/dev/%[a-zA-Z]%hu",
|
||||
dki_info->dki_dname,
|
||||
&dki_info->dki_partition);
|
||||
} else if ((strncmp(dev_path, "/dev/dm-", 8) == 0)) {
|
||||
strcpy(dki_info->dki_cname, "pseudo");
|
||||
dki_info->dki_ctype = DKC_VBD;
|
||||
|
Loading…
Reference in New Issue
Block a user