Get rid of unused LVM flag for LVM LV.

This commit is contained in:
Andrius Štikonas 2016-07-29 15:46:00 +01:00
parent 1c7dd64e68
commit fd8c81921e
2 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ Partition* LvmDevice::scanPartition(const QString& lvpath, const LvmDevice& dev,
* 1. representing the actual LV start from 0 -> size of LV - 1 * 1. representing the actual LV start from 0 -> size of LV - 1
* 2. representing abstract LV's sector inside a VG partitionTable * 2. representing abstract LV's sector inside a VG partitionTable
* start from last sector + 1 of last Partitions -> size of LV - 1 * start from last sector + 1 of last Partitions -> size of LV - 1
* Reason for this is for the LV Partition to worrks nicely with other parts of the codebase * Reason for this is for the LV Partition to work nicely with other parts of the codebase
* without too many special cases. * without too many special cases.
*/ */
@ -157,7 +157,7 @@ Partition* LvmDevice::scanPartition(const QString& lvpath, const LvmDevice& dev,
startSector, startSector,
endSector, endSector,
lvpath, lvpath,
PartitionTable::Flag::FlagLvm, PartitionTable::Flag::FlagNone,
mountPoint, mountPoint,
mounted); mounted);
return part; return part;