remove non used parameter exclusive

This makes no sense because it should always be exclusive.
Also RDB checks it self.
LVM has not possibility to use lvchange.
DRBD is this feature not implemented.
This commit is contained in:
Wolfgang Link
2015-09-16 13:11:18 +02:00
committed by Dietmar Maurer
parent 097a2b2fcf
commit c8943a85c9
9 changed files with 16 additions and 16 deletions

View File

@ -505,12 +505,12 @@ sub deactivate_storage {
}
sub activate_volume {
my ($class, $storeid, $scfg, $volname, $exclusive, $cache) = @_;
my ($class, $storeid, $scfg, $volname, $cache) = @_;
return 1;
}
sub deactivate_volume {
my ($class, $storeid, $scfg, $volname, $exclusive, $cache) = @_;
my ($class, $storeid, $scfg, $volname, $cache) = @_;
return 1;
}