mirror of
https://github.com/reactos/reactos.git
synced 2026-06-03 09:51:03 +08:00
[NTFS] - Add GetAllocationOffsetFromVCN() function, which was mistakenly left out of the last commit.
svn path=/branches/GSoC_2016/NTFS/; revision=75425
This commit is contained in:
committed by
Thomas Faber
parent
5579428b4f
commit
b1eab36f6b
@@ -511,6 +511,18 @@ DumpBTree(PB_TREE Tree)
|
||||
DumpBTreeNode(Tree->RootNode, 0, 0);
|
||||
}
|
||||
|
||||
// Calculates start of Index Buffer relative to the index allocation, given the node's VCN
|
||||
ULONGLONG
|
||||
GetAllocationOffsetFromVCN(PDEVICE_EXTENSION DeviceExt,
|
||||
ULONG IndexBufferSize,
|
||||
ULONGLONG Vcn)
|
||||
{
|
||||
if (IndexBufferSize < DeviceExt->NtfsInfo.BytesPerCluster)
|
||||
return Vcn * DeviceExt->NtfsInfo.BytesPerSector;
|
||||
|
||||
return Vcn * DeviceExt->NtfsInfo.BytesPerCluster;
|
||||
}
|
||||
|
||||
/**
|
||||
* @name NtfsInsertKey
|
||||
* @implemented
|
||||
|
||||
Reference in New Issue
Block a user