diff --git a/PVE/Storage/RBDPlugin.pm b/PVE/Storage/RBDPlugin.pm index d2c9c1a..fd5a2ef 100644 --- a/PVE/Storage/RBDPlugin.pm +++ b/PVE/Storage/RBDPlugin.pm @@ -91,7 +91,7 @@ my $rados_cmd = sub { }; # needed for volumes created using ceph jewel (or higher) -my $krdb_feature_disable = sub { +my $krbd_feature_disable = sub { my ($scfg, $storeid, $name) = @_; return 1 if !$scfg->{krbd}; @@ -449,7 +449,7 @@ sub clone_image { run_rbd_command($cmd, errmsg => "rbd clone '$basename' error"); - &$krdb_feature_disable($scfg, $storeid, $name); + &$krbd_feature_disable($scfg, $storeid, $name); return $newvol; } @@ -466,7 +466,7 @@ sub alloc_image { my $cmd = &$rbd_cmd($scfg, $storeid, 'create', '--image-format' , 2, '--size', int(($size+1023)/1024), $name); run_rbd_command($cmd, errmsg => "rbd create $name' error"); - &$krdb_feature_disable($scfg, $storeid, $name); + &$krbd_feature_disable($scfg, $storeid, $name); return $name; }