diff --git a/PVE/Storage/ZFSPoolPlugin.pm b/PVE/Storage/ZFSPoolPlugin.pm index 490b61c..5403e68 100644 --- a/PVE/Storage/ZFSPoolPlugin.pm +++ b/PVE/Storage/ZFSPoolPlugin.pm @@ -98,12 +98,8 @@ sub zfs_parse_zvol_list { my $name = pop @parts; my $pool = join('/', @parts); - if ($pool !~ /^rpool$/) { - next unless $name =~ m!^(\w+)-(\d+)-(\w+)-(\d+)$!; - $name = $pool . '/' . $name; - } else { - next; - } + next unless $name =~ m!^(\w+)-(\d+)-(\w+)-(\d+)$!; + $name = $pool . '/' . $name; $zvol->{pool} = $pool; $zvol->{name} = $name;