diff --git a/src/PVE/SysFSTools.pm b/src/PVE/SysFSTools.pm index ac48f2c..b4cd5cc 100644 --- a/src/PVE/SysFSTools.pm +++ b/src/PVE/SysFSTools.pm @@ -172,11 +172,16 @@ sub get_mdev_types { my $available = int(file_read_firstline("$type_path/available_instances")); my $description = PVE::Tools::file_get_contents("$type_path/description"); - push @$types, { + my $entry = { type => $type, description => $description, available => $available, }; + + my $name = file_read_firstline("$type_path/name"); + $entry->{name} = $name if defined($name); + + push @$types, $entry; }); return $types;