2009-03-14 14:02:41 -06:00
|
|
|
/* Copyright (C) 2009 Curtis Gedak
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../include/DMRaid.h"
|
|
|
|
|
|
|
|
#include <stdlib.h> //atoi function
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
//Initialize static data elements
|
|
|
|
bool DMRaid::dmraid_cache_initialized = false ;
|
|
|
|
bool DMRaid::dmraid_found = false ;
|
|
|
|
bool DMRaid::dmsetup_found = false ;
|
|
|
|
bool DMRaid::kpartx_found = false ;
|
2009-04-26 16:45:53 -06:00
|
|
|
bool DMRaid::udevinfo_found = false ;
|
|
|
|
bool DMRaid::udevadm_found = false ;
|
2009-03-14 14:02:41 -06:00
|
|
|
std::vector<Glib::ustring> DMRaid::dmraid_devices ;
|
|
|
|
|
|
|
|
DMRaid::DMRaid()
|
|
|
|
{
|
|
|
|
//Ensure that cache has been loaded at least once
|
2009-04-27 15:17:45 -06:00
|
|
|
if ( ! dmraid_cache_initialized )
|
|
|
|
{
|
2009-03-14 14:02:41 -06:00
|
|
|
dmraid_cache_initialized = true ;
|
|
|
|
set_commands_found() ;
|
|
|
|
load_dmraid_cache() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DMRaid::DMRaid( const bool & do_refresh )
|
|
|
|
{
|
|
|
|
//Ensure that cache has been loaded at least once
|
|
|
|
if ( ! dmraid_cache_initialized )
|
|
|
|
{
|
|
|
|
dmraid_cache_initialized = true ;
|
|
|
|
set_commands_found() ;
|
|
|
|
if ( do_refresh == false )
|
|
|
|
load_dmraid_cache() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( do_refresh )
|
|
|
|
load_dmraid_cache() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
DMRaid::~DMRaid()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void DMRaid::load_dmraid_cache()
|
|
|
|
{
|
|
|
|
//Load data into dmraid structures
|
|
|
|
Glib::ustring output, error ;
|
2009-04-27 15:17:45 -06:00
|
|
|
if ( dmraid_found )
|
|
|
|
{
|
2009-03-14 14:02:41 -06:00
|
|
|
if ( ! Utils::execute_command( "dmraid -sa -c", output, error, true ) )
|
|
|
|
{
|
|
|
|
Glib::ustring temp = Utils::regexp_label( output, "^(no raid disks).*" ) ;
|
|
|
|
if ( temp == "no raid disks" )
|
|
|
|
dmraid_devices .clear() ;
|
|
|
|
else
|
|
|
|
Utils::tokenize( output, dmraid_devices, "\n" ) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dmraid_devices .clear() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DMRaid::set_commands_found()
|
|
|
|
{
|
|
|
|
//Set status of commands found
|
|
|
|
dmraid_found = (! Glib::find_program_in_path( "dmraid" ) .empty() ) ;
|
|
|
|
dmsetup_found = (! Glib::find_program_in_path( "dmsetup" ) .empty() ) ;
|
|
|
|
kpartx_found = (! Glib::find_program_in_path( "kpartx" ) .empty() ) ;
|
2009-04-26 16:45:53 -06:00
|
|
|
udevinfo_found = (! Glib::find_program_in_path( "udevinfo" ) .empty() ) ;
|
|
|
|
udevadm_found = (! Glib::find_program_in_path( "udevadm" ) .empty() ) ;
|
2009-03-14 14:02:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::is_dmraid_supported()
|
|
|
|
{
|
|
|
|
//Determine if dmraid is supported on this computer
|
|
|
|
return ( dmraid_found && dmsetup_found && kpartx_found ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::is_dmraid_device( const Glib::ustring & dev_path )
|
|
|
|
{
|
|
|
|
//Determine if the device is a dmraid device
|
|
|
|
bool device_found = false ; //assume not found
|
|
|
|
|
|
|
|
if ( is_dmraid_supported() )
|
|
|
|
{
|
|
|
|
for ( unsigned int k=0; k < dmraid_devices .size(); k++ )
|
|
|
|
if ( dev_path == (DEV_MAP_PATH + dmraid_devices[k]) )
|
|
|
|
device_found = true ;
|
|
|
|
}
|
|
|
|
|
2009-04-26 16:45:53 -06:00
|
|
|
//Some distros appear to default to /dev/dm-# for device names, so
|
|
|
|
// also check with udev to see if they are in fact dmraid devices
|
|
|
|
if ( ! device_found && ( dev_path .find( "/dev/dm" ) != Glib::ustring::npos ) )
|
|
|
|
{
|
2009-04-28 13:42:47 -06:00
|
|
|
Glib::ustring udev_name = get_udev_name( dev_path ) ;
|
|
|
|
if ( ! udev_name .empty() )
|
2009-04-26 16:45:53 -06:00
|
|
|
for ( unsigned int k=0; k < dmraid_devices .size(); k++ )
|
2009-04-28 13:42:47 -06:00
|
|
|
if ( udev_name .find( dmraid_devices[k] ) != Glib::ustring::npos )
|
2009-04-26 16:45:53 -06:00
|
|
|
device_found = true ;
|
|
|
|
}
|
|
|
|
|
2009-03-14 14:02:41 -06:00
|
|
|
return device_found ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: Copy of code from FileSystem.cc.
|
|
|
|
// This should be replaced when a general execute_command with asynchronous updates is built.
|
|
|
|
int DMRaid::execute_command( const Glib::ustring & command, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
Glib::ustring output, error ;
|
|
|
|
|
|
|
|
operationdetail .add_child( OperationDetail( command, STATUS_NONE, FONT_BOLD_ITALIC ) ) ;
|
|
|
|
|
|
|
|
int exit_status = Utils::execute_command( "nice -n 19 " + command, output, error ) ;
|
|
|
|
|
|
|
|
if ( ! output .empty() )
|
|
|
|
operationdetail .get_last_child() .add_child( OperationDetail( output, STATUS_NONE, FONT_ITALIC ) ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
operationdetail .get_last_child() .add_child( OperationDetail( error, STATUS_NONE, FONT_ITALIC ) ) ;
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DMRaid::get_devices( std::vector<Glib::ustring> & device_list )
|
|
|
|
{
|
|
|
|
//Retrieve list of dmraid devices
|
|
|
|
device_list .clear() ;
|
|
|
|
|
|
|
|
for ( unsigned int k=0; k < dmraid_devices .size(); k++ )
|
|
|
|
device_list .push_back( DEV_MAP_PATH + dmraid_devices[k] ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::ustring DMRaid::get_dmraid_name( const Glib::ustring & dev_path )
|
|
|
|
{
|
|
|
|
//Retrieve name of dmraid device
|
|
|
|
Glib::ustring dmraid_name = "" ;
|
|
|
|
Glib::ustring regexp = "" ;
|
|
|
|
|
|
|
|
for ( unsigned int k=0; k < dmraid_devices .size(); k++ )
|
|
|
|
{
|
|
|
|
regexp = ".*(" + dmraid_devices[k] + ").*" ;
|
|
|
|
if ( Utils::regexp_label( dev_path, regexp ) == dmraid_devices[k] )
|
|
|
|
dmraid_name = dmraid_devices[k] ;
|
|
|
|
}
|
2009-04-28 14:21:56 -06:00
|
|
|
|
|
|
|
//Some distros appear to default to /dev/dm-# for device names, so
|
|
|
|
// also check with udev for dmraid name
|
|
|
|
if ( dmraid_name .empty() && ( dev_path .find( "/dev/dm" ) != Glib::ustring::npos ) )
|
|
|
|
{
|
|
|
|
Glib::ustring udev_name = get_udev_name( dev_path ) ;
|
|
|
|
for ( unsigned int k=0; k < dmraid_devices .size(); k++ )
|
|
|
|
if ( udev_name .find( dmraid_devices[k] ) != Glib::ustring::npos )
|
|
|
|
dmraid_name = dmraid_devices[k] ;
|
|
|
|
}
|
|
|
|
|
2009-03-14 14:02:41 -06:00
|
|
|
return dmraid_name ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DMRaid::get_dmraid_dir_entries( const Glib::ustring & dev_path, std::vector<Glib::ustring> & dir_list )
|
|
|
|
{
|
|
|
|
//Build list of all device entries matching device path
|
|
|
|
|
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( dev_path ) ;
|
|
|
|
|
|
|
|
//Loop through the entries in the directory
|
|
|
|
Glib::ustring filename = "" ;
|
|
|
|
Glib::Dir dir( DEV_MAP_PATH) ;
|
|
|
|
while ( ( filename = dir .read_name() ) != "" )
|
|
|
|
{
|
|
|
|
if ( filename == "control" )
|
|
|
|
continue ;
|
|
|
|
|
|
|
|
if ( Utils::regexp_label( filename, "^(" + dmraid_name + ")" ) == dmraid_name )
|
|
|
|
dir_list .push_back( filename ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
int DMRaid::get_partition_number( const Glib::ustring & partition_name )
|
|
|
|
{
|
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( partition_name ) ;
|
|
|
|
return std::atoi( Utils::regexp_label( partition_name, dmraid_name + "p?([0-9]+)" ) .c_str() ) ;
|
|
|
|
}
|
|
|
|
|
2009-04-28 13:42:47 -06:00
|
|
|
Glib::ustring DMRaid::get_udev_name( const Glib::ustring & dev_path )
|
|
|
|
{
|
|
|
|
//Retrieve name of device using udev information
|
|
|
|
Glib::ustring output = "" ;
|
|
|
|
Glib::ustring error = "" ;
|
|
|
|
Glib::ustring udev_name = "" ;
|
|
|
|
|
|
|
|
if ( udevinfo_found )
|
|
|
|
if ( ! Utils::execute_command( "udevinfo --query=name --name=" + dev_path, output, error, true ) )
|
|
|
|
udev_name = output ;
|
|
|
|
else if ( udevadm_found )
|
|
|
|
if ( ! Utils::execute_command( "udevadm info --query=name --name=" + DEV_MAP_PATH + dev_path, output, error, true ) )
|
|
|
|
udev_name = output ;
|
|
|
|
if ( ! udev_name .empty() )
|
|
|
|
{
|
|
|
|
//Extract portion of name after last '/'
|
|
|
|
udev_name = Utils::regexp_label( udev_name, "([^/]*)$" ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return udev_name ;
|
|
|
|
}
|
|
|
|
|
2009-03-14 14:02:41 -06:00
|
|
|
bool DMRaid::create_dev_map_entries( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
//Create all missing dev mapper entries for a specified device.
|
|
|
|
// Try both dmraid -ay and kpartx -a
|
|
|
|
|
|
|
|
Glib::ustring command ;
|
2009-03-27 10:58:31 -06:00
|
|
|
bool exit_status = true ;
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-03-27 10:58:31 -06:00
|
|
|
/*TO TRANSLATORS: looks like create missing /dev/mapper entries */
|
2009-03-14 14:02:41 -06:00
|
|
|
Glib::ustring tmp = String::ucompose ( _("create missing %1 entries"), DEV_MAP_PATH ) ;
|
|
|
|
operationdetail .add_child( OperationDetail( tmp ) );
|
|
|
|
|
2009-04-29 16:34:30 -06:00
|
|
|
command = "dmraid -ay -v" ;
|
2009-03-14 14:02:41 -06:00
|
|
|
if ( execute_command( command, operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
|
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( partition .device_path ) ;
|
|
|
|
command = "kpartx -a -v " + DEV_MAP_PATH + dmraid_name ;
|
|
|
|
if ( execute_command( command, operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
|
|
|
|
operationdetail .get_last_child() .set_status( exit_status ? STATUS_SUCCES : STATUS_ERROR ) ;
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::create_dev_map_entries( const Glib::ustring & dev_path )
|
|
|
|
{
|
|
|
|
//Create all missing dev mapper entries for a specified device.
|
|
|
|
// Try both dmraid -ay and kpartx -a
|
|
|
|
|
|
|
|
Glib::ustring command, output, error ;
|
2009-04-29 16:23:28 -06:00
|
|
|
bool exit_status = true ;
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-04-29 16:34:30 -06:00
|
|
|
command = "dmraid -ay -v" ;
|
2009-04-29 16:23:28 -06:00
|
|
|
if ( Utils::execute_command( command, output, error, true ) )
|
|
|
|
exit_status = false; //command failed
|
|
|
|
|
2009-04-29 16:34:30 -06:00
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( dev_path ) ;
|
2009-04-29 16:23:28 -06:00
|
|
|
command = "kpartx -a -v " + DEV_MAP_PATH + dmraid_name ;
|
|
|
|
if ( Utils::execute_command( command, output, error, true ) )
|
|
|
|
exit_status = false; //command failed
|
2009-03-14 14:02:41 -06:00
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DMRaid::get_affected_dev_map_entries( const Partition & partition, std::vector<Glib::ustring> & affected_entries )
|
|
|
|
{
|
|
|
|
//Build list of affected /dev/mapper entries when a partition is to be deleted.
|
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
//Retrieve list of matching directory entries
|
|
|
|
std::vector<Glib::ustring> dir_list ;
|
|
|
|
get_dmraid_dir_entries( partition .device_path, dir_list );
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
//All partition numbers equal to the number of the partition to be deleted
|
|
|
|
// will be affected.
|
|
|
|
// Also, if the partition is inside an extended partition, then all logical
|
|
|
|
// partition numbers greater than the number of the partition to be deleted
|
|
|
|
// will be affected.
|
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( partition .device_path ) ;
|
|
|
|
for ( unsigned int k=0; k < dir_list .size(); k++ )
|
2009-03-14 14:02:41 -06:00
|
|
|
{
|
2009-03-16 16:59:50 -06:00
|
|
|
if ( Utils::regexp_label( dir_list[k], "^(" + dmraid_name + ")" ) == dmraid_name )
|
|
|
|
{
|
|
|
|
int dir_part_num = get_partition_number( dir_list[k] ) ;
|
|
|
|
if ( dir_part_num == partition .partition_number ||
|
|
|
|
( partition .inside_extended && dir_part_num > partition .partition_number )
|
|
|
|
)
|
|
|
|
affected_entries .push_back( dir_list[k] ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
void DMRaid::get_partition_dev_map_entries( const Partition & partition, std::vector<Glib::ustring> & partition_entries )
|
|
|
|
{
|
|
|
|
//Build list of all /dev/mapper entries for a partition.
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
//Retrieve list of matching directory entries
|
|
|
|
std::vector<Glib::ustring> dir_list ;
|
|
|
|
get_dmraid_dir_entries( partition .device_path, dir_list );
|
2009-03-14 14:02:41 -06:00
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
//Retrieve all partition numbers equal to the number of the partition.
|
|
|
|
Glib::ustring dmraid_name = get_dmraid_name( partition .device_path ) ;
|
|
|
|
for ( unsigned int k=0; k < dir_list .size(); k++ )
|
|
|
|
{
|
|
|
|
if ( Utils::regexp_label( dir_list[k], "^(" + dmraid_name + ")" ) == dmraid_name )
|
2009-03-14 14:02:41 -06:00
|
|
|
{
|
2009-03-16 16:59:50 -06:00
|
|
|
int dir_part_num = get_partition_number( dir_list[k] ) ;
|
|
|
|
if ( dir_part_num == partition .partition_number )
|
|
|
|
partition_entries .push_back( dir_list[k] ) ;
|
2009-03-14 14:02:41 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::delete_affected_dev_map_entries( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
//Delete all affected dev mapper entries (logical partitions >= specificied partition)
|
|
|
|
|
|
|
|
std::vector<Glib::ustring> affected_entries ;
|
|
|
|
Glib::ustring command ;
|
2009-03-27 10:58:31 -06:00
|
|
|
bool exit_status = true ;
|
2009-03-14 14:02:41 -06:00
|
|
|
|
|
|
|
/*TO TRANSLATORS: looks like delete affected /dev/mapper entries */
|
|
|
|
Glib::ustring tmp = String::ucompose ( _("delete affected %1 entries"), DEV_MAP_PATH ) ;
|
|
|
|
operationdetail .add_child( OperationDetail( tmp ) );
|
|
|
|
|
|
|
|
get_affected_dev_map_entries( partition, affected_entries ) ;
|
|
|
|
|
|
|
|
for ( unsigned int k=0; k < affected_entries .size(); k++ )
|
|
|
|
{
|
|
|
|
command = "dmsetup remove " + DEV_MAP_PATH + affected_entries[k] ;
|
|
|
|
if ( execute_command( command, operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
}
|
|
|
|
|
|
|
|
operationdetail .get_last_child() .set_status( exit_status ? STATUS_SUCCES : STATUS_ERROR ) ;
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::delete_dev_map_entry( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
2009-03-16 16:59:50 -06:00
|
|
|
//Delete a single partition which may be represented by multiple dev mapper entries
|
2009-03-27 10:58:31 -06:00
|
|
|
bool exit_status = true ;
|
2009-03-14 14:02:41 -06:00
|
|
|
|
|
|
|
/*TO TRANSLATORS: looks like delete /dev/mapper entry */
|
|
|
|
Glib::ustring tmp = String::ucompose ( _("delete %1 entry"), DEV_MAP_PATH ) ;
|
|
|
|
operationdetail .add_child( OperationDetail( tmp ) );
|
|
|
|
|
2009-03-16 16:59:50 -06:00
|
|
|
std::vector<Glib::ustring> partition_entries ;
|
|
|
|
get_partition_dev_map_entries( partition, partition_entries ) ;
|
|
|
|
|
|
|
|
for ( unsigned int k = 0; k < partition_entries .size(); k++ )
|
|
|
|
{
|
|
|
|
Glib::ustring command = "dmsetup remove " + partition_entries[k] ;
|
|
|
|
if ( execute_command( command, operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
}
|
2009-03-14 14:02:41 -06:00
|
|
|
|
|
|
|
operationdetail .get_last_child() .set_status( exit_status ? STATUS_SUCCES : STATUS_ERROR ) ;
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::purge_dev_map_entries( const Glib::ustring & dev_path )
|
|
|
|
{
|
|
|
|
//Delete all dev mapper entries for dmraid device
|
|
|
|
|
|
|
|
std::vector<Glib::ustring> dir_list ;
|
|
|
|
Glib::ustring command ;
|
|
|
|
Glib::ustring output, error ;
|
2009-03-27 10:58:31 -06:00
|
|
|
bool exit_status = true ;
|
2009-03-14 14:02:41 -06:00
|
|
|
|
|
|
|
get_dmraid_dir_entries( dev_path, dir_list ) ;
|
|
|
|
|
|
|
|
for ( unsigned int k=0; k < dir_list .size(); k++ )
|
|
|
|
{
|
|
|
|
command = "dmsetup remove " + DEV_MAP_PATH + dir_list[k] ;
|
|
|
|
if ( Utils::execute_command( command, output, error, true ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
}
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DMRaid::update_dev_map_entry( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
//Update dmraid entry by first deleting the entry then recreating the entry
|
|
|
|
|
2009-03-23 12:51:33 -06:00
|
|
|
//Skip if extended partition because the only change is to the partition table.
|
|
|
|
if ( partition .type == GParted::TYPE_EXTENDED )
|
|
|
|
return true ;
|
|
|
|
|
2009-03-27 10:58:31 -06:00
|
|
|
bool exit_status = true ;
|
|
|
|
|
2009-03-14 14:02:41 -06:00
|
|
|
/*TO TRANSLATORS: looks like update /dev/mapper entry */
|
|
|
|
Glib::ustring tmp = String::ucompose ( _("update %1 entry"), DEV_MAP_PATH ) ;
|
|
|
|
operationdetail .add_child( OperationDetail( tmp ) );
|
|
|
|
|
|
|
|
if( ! delete_dev_map_entry( partition , operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
|
|
|
|
if( ! create_dev_map_entries( partition , operationdetail .get_last_child() ) )
|
|
|
|
exit_status = false ; //command failed
|
|
|
|
|
|
|
|
operationdetail .get_last_child() .set_status( exit_status ? STATUS_SUCCES : STATUS_ERROR ) ;
|
|
|
|
|
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
|
|
|
}//GParted
|