diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-15 11:27:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-15 11:27:12 +0000 |
commit | a0092a3d667863341339645f5d0bc9bc4b4b5108 (patch) | |
tree | d9a24e421b0ed945ff3d3bced57634cd68e5776f /perl-install/fsedit.pm | |
parent | 28a23a084b62594b9acf2d0f4d2dd3e7dad60ed8 (diff) | |
download | drakx-a0092a3d667863341339645f5d0bc9bc4b4b5108.tar drakx-a0092a3d667863341339645f5d0bc9bc4b4b5108.tar.gz drakx-a0092a3d667863341339645f5d0bc9bc4b4b5108.tar.bz2 drakx-a0092a3d667863341339645f5d0bc9bc4b4b5108.tar.xz drakx-a0092a3d667863341339645f5d0bc9bc4b4b5108.zip |
- remove the use of BLKRRPART (telling the kernel to re-read the partition table) in most cases
- replace with tell_kernel() and will_tell_kernel()
- correctly handle in standalone the need to reboot, with no way to forget it
(telling the WM to quit nicely then call reboot when it's done)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index dcba0d267..58143023a 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -682,7 +682,9 @@ sub undo { my $h; eval $code; @$_{@partition_table::fields2save} = @$h; - $_->{isDirty} = $_->{needKernelReread} = 1 if $_->{hasBeenDirty}; + if ($_->{hasBeenDirty}) { + partition_table::will_tell_kernel($_, 'force_reboot'); #- next action needing write_partitions will force it. We can't do it now since more undo may occur, and we must not needReboot now + } } } |