summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-07 23:42:29 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-07 23:42:29 +0000
commit3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab (patch)
tree6999f3a7808155414221bfd38a785da37c25bf88
parentef94ffc7836beb6bc297106851749441e0fb2254 (diff)
downloaddrakx-3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab.tar
drakx-3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab.tar.gz
drakx-3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab.tar.bz2
drakx-3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab.tar.xz
drakx-3ae2005f5cfb0cc034f3c5f1f85a100f22fe15ab.zip
ensure the raid is disactivated and marked dirty on any actions that destroy the raid
-rw-r--r--perl-install/diskdrake/interactive.pm1
-rw-r--r--perl-install/raid.pm40
2 files changed, 26 insertions, 15 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index fd4bd3af2..b86c32839 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -714,7 +714,6 @@ sub Add2RAID {
raid::add($raids, $part, $_);
}
raid::update(@$raids);
- raid::stopAll();
}
sub Add2LVM {
my ($in, $hd, $part, $all_hds) = @_;
diff --git a/perl-install/raid.pm b/perl-install/raid.pm
index 7096a203b..86a27d866 100644
--- a/perl-install/raid.pm
+++ b/perl-install/raid.pm
@@ -33,6 +33,8 @@ sub new {
sub add {
my ($raids, $part, $nb) = @_; $nb = nb($nb);
$raids->[$nb]{isMounted} and die _("Can't add a partition to _formatted_ RAID md%d", $nb);
+ inactivate_and_dirty($raids->[$nb]);
+ $part->{notFormatted} = 1; $part->{isFormatted} = 0;
$part->{raid} = $nb;
delete $part->{mntpoint};
push @{$raids->[$nb]{disks}}, $part;
@@ -42,7 +44,7 @@ sub add {
sub delete {
my ($raids, $nb) = @_;
$nb = nb($nb);
-
+ inactivate_and_dirty($raids->[$nb]);
delete $_->{raid} foreach @{$raids->[$nb]{disks}};
undef $raids->[$nb];
}
@@ -50,6 +52,8 @@ sub delete {
sub changeNb {
my ($raids, $oldnb, $newnb) = @_;
if ($oldnb != $newnb) {
+ inactivate_and_dirty($raids->[$_]) foreach $oldnb, $newnb;
+
($raids->[$newnb], $raids->[$oldnb]) = ($raids->[$oldnb], undef);
$raids->[$newnb]{device} = "md$newnb";
$_->{raid} = $newnb foreach @{$raids->[$newnb]{disks}};
@@ -60,7 +64,7 @@ sub changeNb {
sub removeDisk {
my ($raids, $part) = @_;
my $nb = nb($part->{raid});
- run_program::run("raidstop", devices::make($part->{device}));
+ inactivate_and_dirty($raids->[$nb]);
delete $part->{raid};
my $disks = $raids->[$nb]{disks};
@$disks = grep { $_ != $part } @$disks;
@@ -92,16 +96,9 @@ sub module {
$mod;
}
-sub updateIsFormatted {
- my ($part) = @_;
- $part->{isFormatted} = and_ map { $_->{isFormatted} } @{$part->{disks}};
- $part->{notFormatted} = and_ map { $_->{notFormatted} } @{$part->{disks}};
-}
+
sub update {
- foreach (@_) {
- updateSize($_);
- updateIsFormatted($_);
- }
+ updateSize($_) foreach @_;
}
sub write {
@@ -126,12 +123,16 @@ EOF
}
sub make {
- my ($raids, $part) = @_;
+ my ($raids, $part) = @_;
+
+ return if is_active($part->{device});
+
+ inactivate_and_dirty($part);
+
isRAID($_) and make($raids, $_) foreach @{$part->{disks}};
my $dev = devices::make($part->{device});
eval { modules::load(module($part)) };
&write($raids, "/etc/raidtab");
- run_program::run("raidstop", $dev);
run_program::run("mkraid", "--really-force", $dev) or die
$::isStandalone ? _("mkraid failed (maybe raidtools are missing?)") : _("mkraid failed");
}
@@ -163,6 +164,17 @@ sub prepare_prefixed {
}
}
-sub stopAll() { run_program::run("raidstop", devices::make("md$_")) foreach 0..7 }
+sub inactivate_and_dirty {
+ my ($part) = @_;
+ run_program::run("raidstop", devices::make($part->{device}));
+ $part->{notFormatted} = 1; $part->{isFormatted} = 0;
+}
+
+sub is_active {
+ my ($dev) = @_;
+ grep { /^$dev / } cat_("/proc/mdstat");
+}
+
+sub inactivate_all() { run_program::run("raidstop", devices::make("md$_")) foreach 0..7 }
1;