rbd: use rbd ls -l

avoid to call rbd info for each volume

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier
2013-01-03 09:57:53 +01:00
committed by Dietmar Maurer
parent cbc6fef357
commit 7cb2889abb

View File

@ -44,20 +44,19 @@ my $rados_cmd = sub {
sub rbd_ls {
my ($scfg, $storeid) = @_;
my $cmd = &$rbd_cmd($scfg, $storeid, 'ls');
my $cmd = &$rbd_cmd($scfg, $storeid, 'ls', '-l');
my $list = {};
my $parser = sub {
my $line = shift;
if ($line =~ m/^(vm-(\d+)-\S+)$/) {
my ($image, $owner) = ($1, $2);
if ($line =~ m/^(vm-(\d+)-disk-\d+)\s+(\d+)M\s((\S+)\/(vm-\d+-\S+@\S+))?/) {
my ($image, $owner, $size, $parent) = ($1, $2, $3, $6);
my ($size, $parent) = rbd_volume_info($scfg, $storeid, $image);
$list->{$scfg->{pool}}->{$image} = {
name => $image,
size => $size,
size => $size*1024*1024,
parent => $parent,
vmid => $owner
};