Skip to content

Commit 0aa470b

Browse files
committed
NTFS: DirtyPageEntry: Improved documentation
1 parent 9290025 commit 0aa470b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DiskAccessLibrary/FileSystems/NTFS/Log/RestartTables/DirtyPageEntry.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2018 Tal Aloni <[email protected]>. All rights reserved.
1+
/* Copyright (C) 2018-2019 Tal Aloni <[email protected]>. All rights reserved.
22
*
33
* You can redistribute this program and/or modify it under the terms of
44
* the GNU Lesser Public License as published by the Free Software Foundation,
@@ -25,9 +25,9 @@ public class DirtyPageEntry : RestartTableEntry
2525
public uint TargetAttributeOffset;
2626
public uint LengthOfTransfer;
2727
// uint LcnsToFollow;
28-
public uint Reserved; // v0.0 only
29-
public long VCN; // Stored as ulong but can be represented using long
30-
public ulong OldestLsn;
28+
public uint Reserved; // v0.0 only
29+
public long VCN; // Stored as ulong but can be represented using long
30+
public ulong OldestLsn; // Oldest LSN of log record update that has not yet been written through to the disk
3131
public List<long> LCNsForPage = new List<long>();
3232

3333
public DirtyPageEntry(uint majorVersion)

0 commit comments

Comments
 (0)