LVM support #6

Closed
andrius wants to merge 109 commits from (deleted):lvm-support-rebase into master
1 changed files with 6 additions and 5 deletions
Showing only changes of commit 576cc35900 - Show all commits

View File

@ -44,12 +44,13 @@ LvmDevice::LvmDevice(const QString& name, const QString& iconname)
getTotalPE(name),
iconname,
Device::LVM_Device)
, m_peSize(getPeSize(name))
, m_totalPE(getTotalPE(name))
, m_allocPE(getAllocatedPE(name))
, m_freePE(getFreePE(name))
, m_UUID(getUUID(name))
{
m_peSize = logicalSize();
m_totalPE = totalLogical();
m_allocPE = getAllocatedPE(name);
m_freePE = totalLogical() - m_allocPE;
m_UUID = getUUID(name);
initPartitions();
}