Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
6.4 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1999 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; snaplog.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the volume shadow copy log entries.
  12. ;
  13. ;Author:
  14. ;
  15. ; Norbert P. Kusters (norbertk) 22-Jan-1999
  16. ;
  17. ;Revision History:
  18. ;
  19. ;--*/
  20. ;
  21. ;//
  22. ;// Status values are 32 bit values layed out as follows:
  23. ;//
  24. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  25. ;// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  26. ;// +---+-+-------------------------+-------------------------------+
  27. ;// |Sev|C| Facility | Code |
  28. ;// +---+-+-------------------------+-------------------------------+
  29. ;//
  30. ;// where
  31. ;//
  32. ;// Sev - is the severity code
  33. ;//
  34. ;// 00 - Success
  35. ;// 01 - Informational
  36. ;// 10 - Warning
  37. ;// 11 - Error
  38. ;//
  39. ;// C - is the Customer code flag
  40. ;//
  41. ;// Facility - is the facility code
  42. ;//
  43. ;// Code - is the facility's status code
  44. ;//
  45. ;
  46. MessageIdTypedef=NTSTATUS
  47. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  48. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  49. Warning=0x2:STATUS_SEVERITY_WARNING
  50. Error=0x3:STATUS_SEVERITY_ERROR
  51. )
  52. FacilityNames=(System=0x0
  53. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  54. RpcStubs=0x3:FACILITY_RPC_STUBS
  55. Io=0x4:FACILITY_IO_ERROR_CODE
  56. Vs=0x6:FACILITY_VOLUME_SNAPSHOT_ERROR_CODE
  57. )
  58. MessageId=0x0001 Facility=Vs Severity=Error SymbolicName=VS_DIFF_AREA_CREATE_FAILED
  59. Language=English
  60. The shadow copy of volume %2 could not create a diff area file on volume %3.
  61. .
  62. MessageId=0x0002 Facility=Vs Severity=Error SymbolicName=VS_NOT_NTFS
  63. Language=English
  64. The shadow copy of volume %2 could not be created because volume %3, which is specified as part of the diff area, is not an NTFS volume or an error was encountered while trying to determine the file system type of this volume.
  65. .
  66. MessageId=0x0003 Facility=Vs Severity=Error SymbolicName=VS_PIN_DIFF_AREA_FAILED
  67. Language=English
  68. The shadow copy of volume %2 could not lock down the location of the diff area file on volume %3.
  69. .
  70. MessageId=0x0004 Facility=Vs Severity=Error SymbolicName=VS_CREATE_WORKER_THREADS_FAILED
  71. Language=English
  72. The shadow copy of volume %2 could not be created due to insufficient resources for worker threads.
  73. .
  74. MessageId=0x0005 Facility=Vs Severity=Error SymbolicName=VS_CANT_ALLOCATE_BITMAP
  75. Language=English
  76. The shadow copy of volume %2 could not be created due to insufficient non-paged memory pool for a bitmap structure.
  77. .
  78. MessageId=0x0006 Facility=Vs Severity=Error SymbolicName=VS_CANT_CREATE_HEAP
  79. Language=English
  80. The shadow copy of volume %2 could not create a new paged heap. The system may be low on virtual memory.
  81. .
  82. MessageId=0x0007 Facility=Vs Severity=Error SymbolicName=VS_CANT_MAP_DIFF_AREA_FILE
  83. Language=English
  84. The shadow copy of volume %2 failed to query the diff area file mappings on volume %3.
  85. .
  86. MessageId=0x0008 Facility=Vs Severity=Error SymbolicName=VS_FLUSH_AND_HOLD_IRP_TIMEOUT
  87. Language=English
  88. The flush and hold writes operation on volume %2 timed out while waiting for a release writes command.
  89. .
  90. MessageId=0x0009 Facility=Vs Severity=Error SymbolicName=VS_FLUSH_AND_HOLD_FS_TIMEOUT
  91. Language=English
  92. The flush and hold writes operation on volume %2 timed out while waiting for file system cleanup.
  93. .
  94. MessageId=0x000A Facility=Vs Severity=Error SymbolicName=VS_END_COMMIT_TIMEOUT
  95. Language=English
  96. The shadow copy of volume %2 took too long to install.
  97. .
  98. MessageId=0x000B Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_LOW_MEMORY
  99. Language=English
  100. The shadow copy of volume %2 is aborted because of insufficient memory pool.
  101. .
  102. MessageId=0x000C Facility=Vs Severity=Error SymbolicName=VS_GROW_BEFORE_FREE_SPACE
  103. Language=English
  104. The shadow copy of volume %2 became low on diff area space before it was properly installed.
  105. .
  106. MessageId=0x000D Facility=Vs Severity=Error SymbolicName=VS_GROW_DIFF_AREA_FAILED
  107. Language=English
  108. The shadow copy of volume %2 could not grow its diff area file on volume %3.
  109. .
  110. MessageId=0x000E Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_IO_FAILURE
  111. Language=English
  112. The shadow copy of volume %2 was aborted because of an IO failure.
  113. .
  114. MessageId=0x000F Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_NO_HEAP
  115. Language=English
  116. The shadow copy of volume %2 was aborted because of insufficient paged heap.
  117. .
  118. MessageId=0x0010 Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_DISMOUNT
  119. Language=English
  120. The shadow copy of volume %2 was aborted because volume %3, which contains a diff area file for this shadow copy, was force dismounted.
  121. .
  122. MessageId=0x0011 Facility=Vs Severity=Error SymbolicName=VS_TWO_FLUSH_AND_HOLDS
  123. Language=English
  124. An attempt to flush and hold writes on volume %2 was attempted while another flush and hold was already in progress.
  125. .
  126. MessageId=0x0014 Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_FAILED_FREE_SPACE_DETECTION
  127. Language=English
  128. The shadow copy of volume %2 was aborted because of a failed free space computation.
  129. .
  130. MessageId=0x0015 Facility=Vs Severity=Error SymbolicName=VS_MEMORY_PRESSURE_DURING_LOVELACE
  131. Language=English
  132. The flush and hold operation for volume %2 was aborted because of low available system memory.
  133. .
  134. MessageId=0x0016 Facility=Vs Severity=Error SymbolicName=VS_FAILURE_ADDING_DIFF_AREA
  135. Language=English
  136. The diff area volume specified for shadow copies on volume %2 could not be added.
  137. .
  138. MessageId=0x0017 Facility=Vs Severity=Error SymbolicName=VS_DIFF_AREA_CREATE_FAILED_LOW_DISK_SPACE
  139. Language=English
  140. There was insufficient disk space on volume %3 to create the shadow copy of volume %2. Diff area file creation failed.
  141. .
  142. MessageId=0x0018 Facility=Vs Severity=Error SymbolicName=VS_GROW_DIFF_AREA_FAILED_LOW_DISK_SPACE
  143. Language=English
  144. There was insufficient disk space on volume %3 to persist the shadow copy of volume %2. Diff area file growth failed.
  145. .
  146. MessageId=0x0019 Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOTS_OUT_OF_DIFF_AREA
  147. Language=English
  148. The shadow copy of volume %2 was aborted because the diff area file could
  149. not grow in time. Consider reducing the IO load on this system to avoid
  150. this problem in the future.
  151. .
  152. MessageId=0x001A Facility=Vs Severity=Error SymbolicName=VS_ABORT_SNAPSHOT_VOLUME_REMOVED
  153. Language=English
  154. The shadow copy of volume %2 was aborted because the original volume for this
  155. shadow copy was removed.
  156. .