Leaked source code of windows server 2003
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.

686 lines
29 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1991 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; ntiologc.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the I/O error code log values.
  12. ;
  13. ;Author:
  14. ;
  15. ; Jeff Havens (jhavens) 21-Aug-1991
  16. ;
  17. ;Revision History:
  18. ;
  19. ;--*/
  20. ;
  21. ;#ifndef _NTIOLOGC_
  22. ;#define _NTIOLOGC_
  23. ;
  24. ;//
  25. ;// Status values are 32 bit values layed out as follows:
  26. ;//
  27. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  28. ;// 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
  29. ;// +---+-+-------------------------+-------------------------------+
  30. ;// |Sev|C| Facility | Code |
  31. ;// +---+-+-------------------------+-------------------------------+
  32. ;//
  33. ;// where
  34. ;//
  35. ;// Sev - is the severity code
  36. ;//
  37. ;// 00 - Success
  38. ;// 01 - Informational
  39. ;// 10 - Warning
  40. ;// 11 - Error
  41. ;//
  42. ;// C - is the Customer code flag
  43. ;//
  44. ;// Facility - is the facility code
  45. ;//
  46. ;// Code - is the facility's status code
  47. ;//
  48. ;
  49. MessageIdTypedef=NTSTATUS
  50. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  51. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  52. Warning=0x2:STATUS_SEVERITY_WARNING
  53. Error=0x3:STATUS_SEVERITY_ERROR
  54. )
  55. FacilityNames=(System=0x0
  56. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  57. RpcStubs=0x3:FACILITY_RPC_STUBS
  58. Io=0x4:FACILITY_IO_ERROR_CODE
  59. Mca=0x5:FACILITY_MCA_ERROR_CODE
  60. )
  61. MessageId=0x0001 Facility=Io Severity=Success SymbolicName=IO_ERR_RETRY_SUCCEEDED
  62. Language=English
  63. A retry was successful on %1.
  64. .
  65. MessageId=0x0002 Facility=Io Severity=Error SymbolicName=IO_ERR_INSUFFICIENT_RESOURCES
  66. Language=English
  67. The driver could not allocate something necessary for the request for %1.
  68. .
  69. MessageId=0x0003 Facility=Io Severity=Error SymbolicName=IO_ERR_CONFIGURATION_ERROR
  70. Language=English
  71. Driver or device is incorrectly configured for %1.
  72. .
  73. MessageId=0x0004 Facility=Io Severity=Error SymbolicName=IO_ERR_DRIVER_ERROR
  74. Language=English
  75. Driver detected an internal error in its data structures for %1.
  76. .
  77. MessageId=0x0005 Facility=Io Severity=Error SymbolicName=IO_ERR_PARITY
  78. Language=English
  79. A parity error was detected on %1.
  80. .
  81. MessageId=0x0006 Facility=Io Severity=Error SymbolicName=IO_ERR_SEEK_ERROR
  82. Language=English
  83. The device, %1, had a seek error.
  84. .
  85. MessageId=0x0007 Facility=Io Severity=Error SymbolicName=IO_ERR_BAD_BLOCK
  86. Language=English
  87. The device, %1, has a bad block.
  88. .
  89. MessageId=0x0008 Facility=Io Severity=Error SymbolicName=IO_ERR_OVERRUN_ERROR
  90. Language=English
  91. An overrun occurred on %1.
  92. .
  93. MessageId=0x0009 Facility=Io Severity=Error SymbolicName=IO_ERR_TIMEOUT
  94. Language=English
  95. The device, %1, did not respond within the timeout period.
  96. .
  97. MessageId=0x000a Facility=Io Severity=Error SymbolicName=IO_ERR_SEQUENCE
  98. Language=English
  99. The driver detected an unexpected sequence by the device, %1.
  100. .
  101. MessageId=0x000b Facility=Io Severity=Error SymbolicName=IO_ERR_CONTROLLER_ERROR
  102. Language=English
  103. The driver detected a controller error on %1.
  104. .
  105. MessageId=0x000c Facility=Io Severity=Error SymbolicName=IO_ERR_INTERNAL_ERROR
  106. Language=English
  107. The driver detected an internal driver error on %1.
  108. .
  109. MessageId=0x000d Facility=Io Severity=Error SymbolicName=IO_ERR_INCORRECT_IRQL
  110. Language=English
  111. The driver was configured with an incorrect interrupt for %1.
  112. .
  113. MessageId=0x000e Facility=Io Severity=Error SymbolicName=IO_ERR_INVALID_IOBASE
  114. Language=English
  115. The driver was configured with an invalid I/O base address for %1.
  116. .
  117. MessageId=0x000f Facility=Io Severity=Error SymbolicName=IO_ERR_NOT_READY
  118. Language=English
  119. The device, %1, is not ready for access yet.
  120. .
  121. MessageId=0x0010 Facility=Io Severity=Error SymbolicName=IO_ERR_INVALID_REQUEST
  122. Language=English
  123. The request is incorrectly formatted for %1.
  124. .
  125. MessageId=0x0011 Facility=Io Severity=Error SymbolicName=IO_ERR_VERSION
  126. Language=English
  127. The wrong version of the driver has been loaded.
  128. .
  129. MessageId=0x0012 Facility=Io Severity=Error SymbolicName=IO_ERR_LAYERED_FAILURE
  130. Language=English
  131. The driver beneath this one has failed in some way for %1.
  132. .
  133. MessageId=0x0013 Facility=Io Severity=Error SymbolicName=IO_ERR_RESET
  134. Language=English
  135. The device, %1, has been reset.
  136. .
  137. MessageId=0x0014 Facility=Io Severity=Error SymbolicName=IO_ERR_PROTOCOL
  138. Language=English
  139. A transport driver received a frame which violated the protocol.
  140. .
  141. MessageId=0x0015 Facility=Io Severity=Error SymbolicName=IO_ERR_MEMORY_CONFLICT_DETECTED
  142. Language=English
  143. A conflict has been detected between two drivers which claimed two overlapping
  144. memory regions.
  145. Driver %2, with device <%3>, claimed a memory range with starting address
  146. in data address 0x28 and 0x2c, and length in data address 0x30.
  147. .
  148. MessageId=0x0016 Facility=Io Severity=Error SymbolicName=IO_ERR_PORT_CONFLICT_DETECTED
  149. Language=English
  150. A conflict has been detected between two drivers which claimed two overlapping
  151. Io port regions.
  152. Driver %2, with device <%3>, claimed an IO port range with starting address
  153. in data address 0x28 and 0x2c, and length in data address 0x30.
  154. .
  155. MessageId=0x0017 Facility=Io Severity=Error SymbolicName=IO_ERR_DMA_CONFLICT_DETECTED
  156. Language=English
  157. A conflict has been detected between two drivers which claimed equivalent DMA
  158. channels.
  159. Driver %2, with device <%3>, claimed the DMA Channel in data address 0x28, with
  160. optinal port in data address 0x2c.
  161. .
  162. MessageId=0x0018 Facility=Io Severity=Error SymbolicName=IO_ERR_IRQ_CONFLICT_DETECTED
  163. Language=English
  164. A conflict has been detected between two drivers which claimed equivalent IRQs.
  165. Driver %2, with device <%3>, claimed an interrupt with Level in data address
  166. 0x28, vector in data address 0x2c and Affinity in data address 0x30.
  167. .
  168. MessageId=0x0019 Facility=Io Severity=Error SymbolicName=IO_ERR_BAD_FIRMWARE
  169. Language=English
  170. The driver has detected a device with old or out-of-date firmware. The
  171. device will not be used.
  172. .
  173. MessageId=0x001a Facility=Io Severity=Warning SymbolicName=IO_WRN_BAD_FIRMWARE
  174. Language=English
  175. The driver has detected that device %1 has old or out-of-date firmware.
  176. Reduced performance may result.
  177. .
  178. MessageId=0x001b Facility=Io Severity=Error SymbolicName=IO_ERR_DMA_RESOURCE_CONFLICT
  179. Language=English
  180. The device could not allocate one or more required resources due to conflicts
  181. with other devices. The device DMA setting of '%2' could not be
  182. satisified due to a conflict with Driver '%3'.
  183. .
  184. MessageId=0x001c Facility=Io Severity=Error SymbolicName=IO_ERR_INTERRUPT_RESOURCE_CONFLICT
  185. Language=English
  186. The device could not allocate one or more required resources due to conflicts
  187. with other devices. The device interrupt setting of '%2' could not be
  188. satisified due to a conflict with Driver '%3'.
  189. .
  190. MessageId=0x001d Facility=Io Severity=Error SymbolicName=IO_ERR_MEMORY_RESOURCE_CONFLICT
  191. Language=English
  192. The device could not allocate one or more required resources due to conflicts
  193. with other devices. The device memory setting of '%2' could not be
  194. satisified due to a conflict with Driver '%3'.
  195. .
  196. MessageId=0x001e Facility=Io Severity=Error SymbolicName=IO_ERR_PORT_RESOURCE_CONFLICT
  197. Language=English
  198. The device could not allocate one or more required resources due to conflicts
  199. with other devices. The device port setting of '%2' could not be
  200. satisified due to a conflict with Driver '%3'.
  201. .
  202. MessageId=0x001f Facility=Io Severity=Error SymbolicName=IO_BAD_BLOCK_WITH_NAME
  203. Language=English
  204. The file %2 on device %1 contains a bad disk block.
  205. .
  206. MessageId=0x0020 Facility=Io Severity=Warning SymbolicName=IO_WRITE_CACHE_ENABLED
  207. Language=English
  208. The driver detected that the device %1 has its write cache enabled. Data corruption
  209. may occur.
  210. .
  211. MessageId=0x0021 Facility=Io Severity=Warning SymbolicName=IO_RECOVERED_VIA_ECC
  212. Language=English
  213. Data was recovered using error correction code on device %1.
  214. .
  215. MessageId=0x0022 Facility=Io Severity=Warning SymbolicName=IO_WRITE_CACHE_DISABLED
  216. Language=English
  217. The driver disabled the write cache on device %1.
  218. .
  219. MessageId=0x0024 Facility=Io Severity=Informational SymbolicName=IO_FILE_QUOTA_THRESHOLD
  220. Language=English
  221. A user hit their quota threshold on volume %2.
  222. .
  223. MessageId=0x0025 Facility=Io Severity=Informational SymbolicName=IO_FILE_QUOTA_LIMIT
  224. Language=English
  225. A user hit their quota limit on volume %2.
  226. .
  227. MessageId=0x0026 Facility=Io Severity=Informational SymbolicName=IO_FILE_QUOTA_STARTED
  228. Language=English
  229. The system has started rebuilding the user disk quota information on
  230. device %1 with label "%2".
  231. .
  232. MessageId=0x0027 Facility=Io Severity=Informational SymbolicName=IO_FILE_QUOTA_SUCCEEDED
  233. Language=English
  234. The system has successfully rebuilt the user disk quota information on
  235. device %1 with label "%2".
  236. .
  237. MessageId=0x0028 Facility=Io Severity=Warning SymbolicName=IO_FILE_QUOTA_FAILED
  238. Language=English
  239. The system has encounted an error rebuilding the user disk quota
  240. information on device %1 with label "%2".
  241. .
  242. MessageId=0x0029 Facility=Io Severity=Error SymbolicName=IO_FILE_SYSTEM_CORRUPT
  243. Language=English
  244. The file system structure on the disk is corrupt and unusable.
  245. Please run the chkdsk utility on the device %1 with label "%2".
  246. .
  247. MessageId=0x002a Facility=Io Severity=Error SymbolicName=IO_FILE_QUOTA_CORRUPT
  248. Language=English
  249. The user disk quota information is unusable.
  250. To ensure accuracy, the file system quota information on the device %1 with label "%2" will
  251. be rebuilt.
  252. .
  253. MessageId=0x002b Facility=Io Severity=Error SymbolicName=IO_SYSTEM_SLEEP_FAILED
  254. Language=English
  255. The system sleep operation failed
  256. .
  257. MessageId=0x002c Facility=Io Severity=Error SymbolicName=IO_DUMP_POINTER_FAILURE
  258. Language=English
  259. The system could not get file retrieval pointers for the dump file.
  260. .
  261. MessageId=0x002d Facility=Io Severity=Error SymbolicName=IO_DUMP_DRIVER_LOAD_FAILURE
  262. Language=English
  263. The system could not sucessfully load the crash dump driver.
  264. .
  265. MessageId=0x002e Facility=Io Severity=Error SymbolicName=IO_DUMP_INITIALIZATION_FAILURE
  266. Language=English
  267. Crash dump initialization failed!
  268. .
  269. MessageId=0x002f Facility=Io Severity=Error SymbolicName=IO_DUMP_DUMPFILE_CONFLICT
  270. Language=English
  271. A valid crash dump was found in the paging file while trying to configure
  272. a direct dump. Direct dump is disabled! This occurs when the direct dump
  273. option is set in the registry but a stop error occured before configuration
  274. completed
  275. .
  276. MessageId=0x0030 Facility=Io Severity=Error SymbolicName=IO_DUMP_DIRECT_CONFIG_FAILED
  277. Language=English
  278. Direct dump configuration failed. Validate the filename and make sure the target device
  279. is not a Fault Tolerant set member, remote, or floppy device. The failure may
  280. be because there is not enough room on the dump device to create the dump file.
  281. .
  282. MessageId=0x0031 Facility=Io Severity=Error SymbolicName=IO_DUMP_PAGE_CONFIG_FAILED
  283. Language=English
  284. Configuring the Page file for crash dump failed. Make sure there is a page
  285. file on the boot partition and that is large enough to contain all physical
  286. memory.
  287. .
  288. MessageId=0x0032 Facility=Io Severity=Warning SymbolicName=IO_LOST_DELAYED_WRITE
  289. Language=English
  290. {Delayed Write Failed}
  291. Windows was unable to save all the data for the file %1. The data has been lost.
  292. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
  293. .
  294. MessageId=0x0033 Facility=Io Severity=Warning SymbolicName=IO_WARNING_PAGING_FAILURE
  295. Language=English
  296. An error was detected on device %1 during a paging operation.
  297. .
  298. MessageId=0x0034 Facility=Io Severity=Warning SymbolicName=IO_WRN_FAILURE_PREDICTED
  299. Language=English
  300. The driver has detected that device %1 has predicted that it will fail.
  301. Immediately back up your data and replace your hard disk drive. A failure
  302. may be imminent.
  303. .
  304. MessageId=0x0035 Facility=Io Severity=Warning SymbolicName=IO_WARNING_INTERRUPT_STILL_PENDING
  305. Language=English
  306. A pending interrupt was detected on device %1 during a timeout operation. A
  307. large number of these warnings may indicate that the system is not correctly
  308. receiving or processing interrupts from the device.
  309. .
  310. MessageId=0x0036 Facility=Io Severity=Warning SymbolicName=IO_DRIVER_CANCEL_TIMEOUT
  311. Language=English
  312. An Io Request to the device %1 did not complete or canceled within the
  313. specific timeout. This can occur if the device driver does not set a
  314. cancel routine for a given IO request packet.
  315. .
  316. MessageId=0x0037 Facility=Io Severity=Error SymbolicName=IO_FILE_SYSTEM_CORRUPT_WITH_NAME
  317. Language=English
  318. The file system structure on the disk is corrupt and unusable.
  319. Please run the chkdsk utility on the volume %2.
  320. .
  321. MessageId=0x0038 Facility=Io Severity=Warning SymbolicName=IO_WARNING_ALLOCATION_FAILED
  322. Language=English
  323. The driver failed to allocate memory.
  324. .
  325. MessageId=0x0039 Facility=Io Severity=Warning SymbolicName=IO_WARNING_LOG_FLUSH_FAILED
  326. Language=English
  327. The system failed to flush data to the transaction log. Corruption may occur.
  328. .
  329. MessageId=0x003a Facility=Io Severity=Warning SymbolicName=IO_WARNING_DUPLICATE_SIGNATURE
  330. Language=English
  331. Changing the disk signature of disk %2 because it is equal to the disk
  332. signature of disk %3.
  333. .
  334. MessageId=0x003b Facility=Io Severity=Warning SymbolicName=IO_WARNING_DUPLICATE_PATH
  335. Language=English
  336. Disk %2 will not be used because it is a redundant path for disk %3.
  337. .
  338. MessageId=0x003c Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CACHE
  339. Language=English
  340. Machine Check Event reported is a corrected level %3 Cache error reported to CPU %1. %2 additional error(s) are contained within the record.
  341. .
  342. MessageId=0x003d Facility=Mca Severity=Error SymbolicName=MCA_ERROR_CACHE
  343. Language=English
  344. Machine Check Event reported is a fatal level %3 Cache error reported to CPU %1. %2 additional error(s) are contained within the record.
  345. .
  346. MessageId=0x003e Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_TLB
  347. Language=English
  348. Machine Check Event reported is a corrected level %3 translation Buffer error reported to CPU %1. %2 additional error(s) are contained within the record.
  349. .
  350. MessageId=0x003f Facility=Mca Severity=Error SymbolicName=MCA_ERROR_TLB
  351. Language=English
  352. Machine Check Event reported is a fatal level %3 translation Buffer error reported to CPU %1. %2 additional error(s) are contained within the record.
  353. .
  354. MessageId=0x0040 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CPU_BUS
  355. Language=English
  356. Machine Check Event reported is a corrected External/Internal bus error reported to CPU %1. %2 additional error(s) are contained within the record.
  357. .
  358. MessageId=0x0041 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_CPU_BUS
  359. Language=English
  360. Machine Check Event reported is a fatal External/Internal bus error reported to CPU %1. %2 additional error(s) are contained within the record.
  361. .
  362. MessageId=0x0042 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_REGISTER_FILE
  363. Language=English
  364. Machine Check Event reported is a corrected internal CPU register access error reported to CPU %1. %2 additional error(s) are contained within the record.
  365. .
  366. MessageId=0x0043 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_REGISTER_FILE
  367. Language=English
  368. Machine Check Event reported is a fatal internal CPU register access error reported to CPU %1. %2 additional error(s) are contained within the record.
  369. .
  370. MessageId=0x0044 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_MAS
  371. Language=English
  372. Machine Check Event reported is a corrected Micro Architecture Structure error reported to CPU %1. %2 additional error(s) are contained within the record.
  373. .
  374. MessageId=0x0045 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_MAS
  375. Language=English
  376. Machine Check Event reported is a fatal Micro Architecture Structure error reported to CPU %1. %2 additional error(s) are contained within the record.
  377. .
  378. MessageId=0x0046 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_MEM_UNKNOWN
  379. Language=English
  380. Machine Check Event reported is a corrected ECC memory error at an unknown physical address reported to CPU %1. %2 additional error(s) are contained within the record.
  381. .
  382. MessageId=0x0047 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_MEM_UNKNOWN
  383. Language=English
  384. Machine Check Event reported is a fatal ECC memory error at an unknown physical address reported to CPU %1. %2 additional error(s) are contained within the record.
  385. .
  386. MessageId=0x0048 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_MEM_1_2
  387. Language=English
  388. Machine Check Event reported is a corrected ECC memory error at physical address %3 reported to CPU %1. %2 additional error(s) are contained within the record.
  389. .
  390. MessageId=0x0049 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_MEM_1_2
  391. Language=English
  392. Machine Check Event reported is a fatal ECC memory error at physical address %3 reported to CPU %1. %2 additional error(s) are contained within the record.
  393. .
  394. MessageId=0x004a Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_MEM_1_2_5
  395. Language=English
  396. Machine Check Event reported is a corrected ECC memory error at physical address %3 on memory module %4 reported to CPU %1. %2 additional error(s) are contained within the record.
  397. .
  398. MessageId=0x004b Facility=Mca Severity=Error SymbolicName=MCA_ERROR_MEM_1_2_5
  399. Language=English
  400. Machine Check Event reported is a fatal ECC memory error at physical address %3 on memory module %4 reported to CPU %1. %2 additional error(s) are contained within the record.
  401. .
  402. MessageId=0x004c Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_MEM_1_2_5_4
  403. Language=English
  404. Machine Check Event reported is a corrected ECC memory error at physical address %3 on memory module %4 on memory card %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  405. .
  406. MessageId=0x004d Facility=Mca Severity=Error SymbolicName=MCA_ERROR_MEM_1_2_5_4
  407. Language=English
  408. Machine Check Event reported is a fatal ECC memory error at physical address %3 on memory module %4 on memory card %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  409. .
  410. MessageId=0x004e Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_SYSTEM_EVENT
  411. Language=English
  412. Machine Check Event reported is a corrected System Event error reported to CPU %1. %2 additional error(s) are contained within the record.
  413. .
  414. MessageId=0x004f Facility=Mca Severity=Error SymbolicName=MCA_ERROR_SYSTEM_EVENT
  415. Language=English
  416. Machine Check Event reported is a fatal System Event error reported to CPU %1. %2 additional error(s) are contained within the record.
  417. .
  418. MessageId=0x0050 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_PARITY
  419. Language=English
  420. Machine Check Event reported is a corrected PCI bus Parity error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  421. .
  422. MessageId=0x0051 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_PARITY
  423. Language=English
  424. Machine Check Event reported is a fatal PCI bus Parity error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  425. .
  426. MessageId=0x0052 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_PARITY_NO_INFO
  427. Language=English
  428. Machine Check Event reported is a corrected PCI bus Parity error reported to CPU %1. %2 additional error(s) are contained within the record.
  429. .
  430. MessageId=0x0053 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_PARITY_NO_INFO
  431. Language=English
  432. Machine Check Event reported is a fatal PCI bus Parity error reported to CPU %1. %2 additional error(s) are contained within the record.
  433. .
  434. MessageId=0x0054 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_SERR
  435. Language=English
  436. Machine Check Event reported is a corrected PCI bus SERR error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  437. .
  438. MessageId=0x0055 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_SERR
  439. Language=English
  440. Machine Check Event reported is a fatal PCI bus SERR error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  441. .
  442. MessageId=0x0056 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_SERR_NO_INFO
  443. Language=English
  444. Machine Check Event reported is a corrected PCI bus SERR error reported to CPU %1. %2 additional error(s) are contained within the record.
  445. .
  446. MessageId=0x0057 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_SERR_NO_INFO
  447. Language=English
  448. Machine Check Event reported is a fatal PCI bus SERR error reported to CPU %1. %2 additional error(s) are contained within the record.
  449. .
  450. MessageId=0x0058 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_MASTER_ABORT
  451. Language=English
  452. Machine Check Event reported is a corrected PCI bus Master abort error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  453. .
  454. MessageId=0x0059 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_MASTER_ABORT
  455. Language=English
  456. Machine Check Event reported is a fatal PCI bus Master abort error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  457. .
  458. MessageId=0x005a Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO
  459. Language=English
  460. Machine Check Event reported is a corrected PCI bus Master abort error reported to CPU %1. %2 additional error(s) are contained within the record.
  461. .
  462. MessageId=0x005b Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO
  463. Language=English
  464. Machine Check Event reported is a fatal PCI bus Master abort error reported to CPU %1. %2 additional error(s) are contained within the record.
  465. .
  466. MessageId=0x005c Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_TIMEOUT
  467. Language=English
  468. Machine Check Event reported is a corrected PCI bus Timeout error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  469. .
  470. MessageId=0x005d Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_TIMEOUT
  471. Language=English
  472. Machine Check Event reported is a fatal PCI bus Timeout error during a transaction type %3 at address %4 on PCI bus %5 reported to CPU %1. %2 additional error(s) are contained within the record.
  473. .
  474. MessageId=0x005e Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO
  475. Language=English
  476. Machine Check Event reported is a corrected PCI bus Timeout error reported to CPU %1. %2 additional error(s) are contained within the record.
  477. .
  478. MessageId=0x005f Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO
  479. Language=English
  480. Machine Check Event reported is a fatal PCI bus Timeout error reported to CPU %1. %2 additional error(s) are contained within the record.
  481. .
  482. MessageId=0x0060 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_BUS_UNKNOWN
  483. Language=English
  484. Machine Check Event reported is an unknown corrected PCI bus error reported to CPU %1. %2 additional error(s) are contained within the record.
  485. .
  486. MessageId=0x0061 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_BUS_UNKNOWN
  487. Language=English
  488. Machine Check Event reported is an unknown fatal PCI bus error reported to CPU %1. %2 additional error(s) are contained within the record.
  489. .
  490. MessageId=0x0062 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PCI_DEVICE
  491. Language=English
  492. Machine Check Event reported is a corrected PCI component error reported to CPU %1. %2 additional error(s) are contained within the record.
  493. .
  494. MessageId=0x0063 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PCI_DEVICE
  495. Language=English
  496. Machine Check Event reported is a fatal PCI component error reported to CPU %1. %2 additional error(s) are contained within the record.
  497. .
  498. MessageId=0x0064 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_SMBIOS
  499. Language=English
  500. Machine Check Event reported is a corrected SMBIOS Device Type %3 error reported to CPU %1. %2 additional error(s) are contained within the record.
  501. .
  502. MessageId=0x0065 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_SMBIOS
  503. Language=English
  504. Machine Check Event reported is a fatal SMBIOS Device Type %3 error reported to CPU %1. %2 additional error(s) are contained within the record.
  505. .
  506. MessageId=0x0066 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_PLATFORM_SPECIFIC
  507. Language=English
  508. Machine Check Event reported is a corrected Platform Specific error reported to CPU %1. %2 additional error(s) are contained within the record.
  509. .
  510. MessageId=0x0067 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_PLATFORM_SPECIFIC
  511. Language=English
  512. Machine Check Event reported is a fatal Platform Specific error reported to CPU %1. %2 additional error(s) are contained within the record.
  513. .
  514. MessageId=0x0068 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_UNKNOWN
  515. Language=English
  516. Machine Check Event reported is a corrected error reported to CPU %1.
  517. .
  518. MessageId=0x0069 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_UNKNOWN
  519. Language=English
  520. Machine Check Event reported is a fatal error reported to CPU %1.
  521. .
  522. MessageId=0x006a Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_UNKNOWN_NO_CPU
  523. Language=English
  524. Machine Check Event reported is a corrected error.
  525. .
  526. MessageId=0x006b Facility=Mca Severity=Error SymbolicName=MCA_ERROR_UNKNOWN_NO_CPU
  527. Language=English
  528. Machine Check Event reported is a fatal error.
  529. .
  530. MessageId=0x006c Facility=Io Severity=Error SymbolicName=IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER
  531. Language=English
  532. The driver %3 for the %2 device %1 got stuck in an infinite loop. This
  533. usually indicates a problem with the device itself or with the device
  534. driver programming the hardware incorrectly. Please check with your
  535. hardware device vendor for any driver updates.
  536. .
  537. MessageId=0x006d Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CMC_THRESHOLD_EXCEEDED
  538. Language=English
  539. Corrected Machine Check Interrupt threshold exceeded. Interrupt has been disabled. Polling mode has been enabled.
  540. .
  541. MessageId=0x006e Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CPE_THRESHOLD_EXCEEDED
  542. Language=English
  543. Corrected Platform Error Interrupt threshold exceeded. Interrupt has been disabled. Polling mode has been enabled.
  544. .
  545. MessageId=0x006f Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CPU_THERMAL_THROTTLED
  546. Language=English
  547. Machine Check Event reported is a CPU thermal throttling event reported from CPU %1. The CPU has exceeded the temperature limit and has been throttled down. %2 additional error(s) are contained within the record.
  548. .
  549. MessageId=0x0070 Facility=Mca Severity=Informational SymbolicName=MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED
  550. Language=English
  551. Machine Check Event reported is a CPU thermal throttling event reported from CPU %1. The CPU has dropped below the temperature limit and throttling has been removed. %2 additional error(s) are contained within the record.
  552. .
  553. MessageId=0x0071 Facility=Mca Severity=Warning SymbolicName=MCA_WARNING_CPU
  554. Language=English
  555. Machine Check Event reported is a corrected CPU error reported from CPU %1. %2 additional error(s) are contained within the record.
  556. .
  557. MessageId=0x0072 Facility=Mca Severity=Error SymbolicName=MCA_ERROR_CPU
  558. Language=English
  559. Machine Check Event reported is a fatal CPU error reported to CPU %1. %2 additional error(s) are contained within the record.
  560. .
  561. MessageId=0x0073 Facility=Mca Severity=Informational SymbolicName=MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS
  562. Language=English
  563. The maximum number of Machine Check Event corrected error events that can be saved to the Event Log has been reached. Logging of these events has been disabled.
  564. .
  565. MessageId=0x0074 Facility=Mca Severity=Informational SymbolicName=MCA_INFO_MEMORY_PAGE_MARKED_BAD
  566. Language=English
  567. The memory page at physical address %1 has encountered multiple corrected hardware error events. As a result it will no longer be used by Windows.
  568. .
  569. MessageId=0x0075 Facility=Io Severity=Error SymbolicName=IO_ERR_PORT_TIMEOUT
  570. Language=English
  571. The driver for device %1 detected a port timeout due to prolonged inactivity. All associated busses were reset in an effort to clear the condition.
  572. .
  573. MessageId=0x0076 Facility=Io Severity=Warning SymbolicName=IO_WARNING_BUS_RESET
  574. Language=English
  575. The driver for device %1 performed a bus reset upon request.
  576. .
  577. MessageId=0x0077 Facility=Io Severity=Informational SymbolicName=IO_INFO_THROTTLE_COMPLETE
  578. Language=English
  579. The driver for device %1 delayed non-paging Io requests for %2 ms to recover from a low memory condition.
  580. .
  581. ;#endif /* _NTIOLOGC_ */