KernelUpdateLogEntryStatus.cs 492 B

1234567891011121314
  1. namespace DiskAccessLibrary.LogicalDiskManager
  2. {
  3. public enum KernelUpdateLogEntryStatus : byte
  4. {
  5. NotExist = 0x00,
  6. Detach = 0x01, // as reported by DMDIAG
  7. Dirty = 0x02, // as reported by DMDIAG
  8. Commit = 0x03, // as reported by DMDIAG
  9. LogDetach = 0x04, // as reported by DMDIAG
  10. // APP_DIRTY = 0x05 (as reported by DMDIAG, which also reports 'recover_seqno 0' for this entry)
  11. // DMDIAG reports > 0x05 as INVALID
  12. }
  13. }