[NTOSKRNL]

Partial revert of r63326! The correct partition numbers cause boot failures.

svn path=/trunk/; revision=63330
This commit is contained in:
Eric Kohl 2014-05-17 14:42:28 +00:00
parent 1a4036b369
commit a47b155648

View file

@ -1655,7 +1655,9 @@ xHalIoReadPartitionTable(IN PDEVICE_OBJECT DeviceObject,
UInt32x32To64(GET_PARTITION_LENGTH(PartitionDescriptor),
SectorSize);
PartitionInfo->PartitionNumber = (!IsContainerPartition(PartitionType)) ? i : 0;
// BUGBUGBUG: The correct partition numbers seem to cause boot failures!!!
// PartitionInfo->PartitionNumber = (!IsContainerPartition(PartitionType)) ? i : 0;
PartitionInfo->PartitionNumber = i + 1;
}
else
{