Use device's immutable copy instead of rescanning.
This commit is contained in:
parent
297cf45bba
commit
ed42185927
@ -685,7 +685,6 @@ QList< PartitionCoreModule::SummaryInfo >
|
||||
PartitionCoreModule::createSummaryInfo() const
|
||||
{
|
||||
QList< SummaryInfo > lst;
|
||||
CoreBackend* backend = CoreBackendManager::self()->backend();
|
||||
for ( auto deviceInfo : m_deviceInfos )
|
||||
{
|
||||
if ( !deviceInfo->isDirty() )
|
||||
@ -694,7 +693,7 @@ PartitionCoreModule::createSummaryInfo() const
|
||||
summaryInfo.deviceName = deviceInfo->device->name();
|
||||
summaryInfo.deviceNode = deviceInfo->device->deviceNode();
|
||||
|
||||
Device* deviceBefore = backend->scanDevice( deviceInfo->device->deviceNode() );
|
||||
Device* deviceBefore = deviceInfo->immutableDevice.data();
|
||||
summaryInfo.partitionModelBefore = new PartitionModel;
|
||||
summaryInfo.partitionModelBefore->init( deviceBefore, m_osproberLines );
|
||||
// Make deviceBefore a child of partitionModelBefore so that it is not
|
||||
|
Loading…
Reference in New Issue
Block a user