VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/i8042prt/include/ntiologc.h@ 4612

Last change on this file since 4612 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 32.7 KB
Line 
1/*++ BUILD Version: 0001 // Increment this if a change has global effects
2
3Copyright (c) 1991 Microsoft Corporation
4
5Module Name:
6
7 ntiologc.h
8
9Abstract:
10
11 Constant definitions for the I/O error code log values.
12
13Author:
14
15 Jeff Havens (jhavens) 21-Aug-1991
16
17Revision 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//
50// Values are 32 bit values layed out as follows:
51//
52// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
53// 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
54// +---+-+-+-----------------------+-------------------------------+
55// |Sev|C|R| Facility | Code |
56// +---+-+-+-----------------------+-------------------------------+
57//
58// where
59//
60// Sev - is the severity code
61//
62// 00 - Success
63// 01 - Informational
64// 10 - Warning
65// 11 - Error
66//
67// C - is the Customer code flag
68//
69// R - is a reserved bit
70//
71// Facility - is the facility code
72//
73// Code - is the facility's status code
74//
75//
76// Define the facility codes
77//
78#define FACILITY_RPC_STUBS 0x3
79#define FACILITY_RPC_RUNTIME 0x2
80#define FACILITY_MCA_ERROR_CODE 0x5
81#define FACILITY_IO_ERROR_CODE 0x4
82
83
84//
85// Define the severity codes
86//
87#define STATUS_SEVERITY_WARNING 0x2
88#define STATUS_SEVERITY_SUCCESS 0x0
89#define STATUS_SEVERITY_INFORMATIONAL 0x1
90#define STATUS_SEVERITY_ERROR 0x3
91
92
93//
94// MessageId: IO_ERR_RETRY_SUCCEEDED
95//
96// MessageText:
97//
98// A retry was successful on %1.
99//
100#define IO_ERR_RETRY_SUCCEEDED ((NTSTATUS)0x00040001L)
101
102//
103// MessageId: IO_ERR_INSUFFICIENT_RESOURCES
104//
105// MessageText:
106//
107// The driver could not allocate something necessary for the request for %1.
108//
109#define IO_ERR_INSUFFICIENT_RESOURCES ((NTSTATUS)0xC0040002L)
110
111//
112// MessageId: IO_ERR_CONFIGURATION_ERROR
113//
114// MessageText:
115//
116// Driver or device is incorrectly configured for %1.
117//
118#define IO_ERR_CONFIGURATION_ERROR ((NTSTATUS)0xC0040003L)
119
120//
121// MessageId: IO_ERR_DRIVER_ERROR
122//
123// MessageText:
124//
125// Driver detected an internal error in its data structures for %1.
126//
127#define IO_ERR_DRIVER_ERROR ((NTSTATUS)0xC0040004L)
128
129//
130// MessageId: IO_ERR_PARITY
131//
132// MessageText:
133//
134// A parity error was detected on %1.
135//
136#define IO_ERR_PARITY ((NTSTATUS)0xC0040005L)
137
138//
139// MessageId: IO_ERR_SEEK_ERROR
140//
141// MessageText:
142//
143// The device, %1, had a seek error.
144//
145#define IO_ERR_SEEK_ERROR ((NTSTATUS)0xC0040006L)
146
147//
148// MessageId: IO_ERR_BAD_BLOCK
149//
150// MessageText:
151//
152// The device, %1, has a bad block.
153//
154#define IO_ERR_BAD_BLOCK ((NTSTATUS)0xC0040007L)
155
156//
157// MessageId: IO_ERR_OVERRUN_ERROR
158//
159// MessageText:
160//
161// An overrun occurred on %1.
162//
163#define IO_ERR_OVERRUN_ERROR ((NTSTATUS)0xC0040008L)
164
165//
166// MessageId: IO_ERR_TIMEOUT
167//
168// MessageText:
169//
170// The device, %1, did not respond within the timeout period.
171//
172#define IO_ERR_TIMEOUT ((NTSTATUS)0xC0040009L)
173
174//
175// MessageId: IO_ERR_SEQUENCE
176//
177// MessageText:
178//
179// The driver detected an unexpected sequence by the device, %1.
180//
181#define IO_ERR_SEQUENCE ((NTSTATUS)0xC004000AL)
182
183//
184// MessageId: IO_ERR_CONTROLLER_ERROR
185//
186// MessageText:
187//
188// The driver detected a controller error on %1.
189//
190#define IO_ERR_CONTROLLER_ERROR ((NTSTATUS)0xC004000BL)
191
192//
193// MessageId: IO_ERR_INTERNAL_ERROR
194//
195// MessageText:
196//
197// The driver detected an internal driver error on %1.
198//
199#define IO_ERR_INTERNAL_ERROR ((NTSTATUS)0xC004000CL)
200
201//
202// MessageId: IO_ERR_INCORRECT_IRQL
203//
204// MessageText:
205//
206// The driver was configured with an incorrect interrupt for %1.
207//
208#define IO_ERR_INCORRECT_IRQL ((NTSTATUS)0xC004000DL)
209
210//
211// MessageId: IO_ERR_INVALID_IOBASE
212//
213// MessageText:
214//
215// The driver was configured with an invalid I/O base address for %1.
216//
217#define IO_ERR_INVALID_IOBASE ((NTSTATUS)0xC004000EL)
218
219//
220// MessageId: IO_ERR_NOT_READY
221//
222// MessageText:
223//
224// The device, %1, is not ready for access yet.
225//
226#define IO_ERR_NOT_READY ((NTSTATUS)0xC004000FL)
227
228//
229// MessageId: IO_ERR_INVALID_REQUEST
230//
231// MessageText:
232//
233// The request is incorrectly formatted for %1.
234//
235#define IO_ERR_INVALID_REQUEST ((NTSTATUS)0xC0040010L)
236
237//
238// MessageId: IO_ERR_VERSION
239//
240// MessageText:
241//
242// The wrong version of the driver has been loaded.
243//
244#define IO_ERR_VERSION ((NTSTATUS)0xC0040011L)
245
246//
247// MessageId: IO_ERR_LAYERED_FAILURE
248//
249// MessageText:
250//
251// The driver beneath this one has failed in some way for %1.
252//
253#define IO_ERR_LAYERED_FAILURE ((NTSTATUS)0xC0040012L)
254
255//
256// MessageId: IO_ERR_RESET
257//
258// MessageText:
259//
260// The device, %1, has been reset.
261//
262#define IO_ERR_RESET ((NTSTATUS)0xC0040013L)
263
264//
265// MessageId: IO_ERR_PROTOCOL
266//
267// MessageText:
268//
269// A transport driver received a frame which violated the protocol.
270//
271#define IO_ERR_PROTOCOL ((NTSTATUS)0xC0040014L)
272
273//
274// MessageId: IO_ERR_MEMORY_CONFLICT_DETECTED
275//
276// MessageText:
277//
278// A conflict has been detected between two drivers which claimed two overlapping
279// memory regions.
280// Driver %2, with device <%3>, claimed a memory range with starting address
281// in data address 0x28 and 0x2c, and length in data address 0x30.
282//
283#define IO_ERR_MEMORY_CONFLICT_DETECTED ((NTSTATUS)0xC0040015L)
284
285//
286// MessageId: IO_ERR_PORT_CONFLICT_DETECTED
287//
288// MessageText:
289//
290// A conflict has been detected between two drivers which claimed two overlapping
291// Io port regions.
292// Driver %2, with device <%3>, claimed an IO port range with starting address
293// in data address 0x28 and 0x2c, and length in data address 0x30.
294//
295#define IO_ERR_PORT_CONFLICT_DETECTED ((NTSTATUS)0xC0040016L)
296
297//
298// MessageId: IO_ERR_DMA_CONFLICT_DETECTED
299//
300// MessageText:
301//
302// A conflict has been detected between two drivers which claimed equivalent DMA
303// channels.
304// Driver %2, with device <%3>, claimed the DMA Channel in data address 0x28, with
305// optinal port in data address 0x2c.
306//
307#define IO_ERR_DMA_CONFLICT_DETECTED ((NTSTATUS)0xC0040017L)
308
309//
310// MessageId: IO_ERR_IRQ_CONFLICT_DETECTED
311//
312// MessageText:
313//
314// A conflict has been detected between two drivers which claimed equivalent IRQs.
315// Driver %2, with device <%3>, claimed an interrupt with Level in data address
316// 0x28, vector in data address 0x2c and Affinity in data address 0x30.
317//
318#define IO_ERR_IRQ_CONFLICT_DETECTED ((NTSTATUS)0xC0040018L)
319
320//
321// MessageId: IO_ERR_BAD_FIRMWARE
322//
323// MessageText:
324//
325// The driver has detected a device with old or out-of-date firmware. The
326// device will not be used.
327//
328#define IO_ERR_BAD_FIRMWARE ((NTSTATUS)0xC0040019L)
329
330//
331// MessageId: IO_WRN_BAD_FIRMWARE
332//
333// MessageText:
334//
335// The driver has detected that device %1 has old or out-of-date firmware.
336// Reduced performance may result.
337//
338#define IO_WRN_BAD_FIRMWARE ((NTSTATUS)0x8004001AL)
339
340//
341// MessageId: IO_ERR_DMA_RESOURCE_CONFLICT
342//
343// MessageText:
344//
345// The device could not allocate one or more required resources due to conflicts
346// with other devices. The device DMA setting of '%2' could not be
347// satisified due to a conflict with Driver '%3'.
348//
349#define IO_ERR_DMA_RESOURCE_CONFLICT ((NTSTATUS)0xC004001BL)
350
351//
352// MessageId: IO_ERR_INTERRUPT_RESOURCE_CONFLICT
353//
354// MessageText:
355//
356// The device could not allocate one or more required resources due to conflicts
357// with other devices. The device interrupt setting of '%2' could not be
358// satisified due to a conflict with Driver '%3'.
359//
360#define IO_ERR_INTERRUPT_RESOURCE_CONFLICT ((NTSTATUS)0xC004001CL)
361
362//
363// MessageId: IO_ERR_MEMORY_RESOURCE_CONFLICT
364//
365// MessageText:
366//
367// The device could not allocate one or more required resources due to conflicts
368// with other devices. The device memory setting of '%2' could not be
369// satisified due to a conflict with Driver '%3'.
370//
371#define IO_ERR_MEMORY_RESOURCE_CONFLICT ((NTSTATUS)0xC004001DL)
372
373//
374// MessageId: IO_ERR_PORT_RESOURCE_CONFLICT
375//
376// MessageText:
377//
378// The device could not allocate one or more required resources due to conflicts
379// with other devices. The device port setting of '%2' could not be
380// satisified due to a conflict with Driver '%3'.
381//
382#define IO_ERR_PORT_RESOURCE_CONFLICT ((NTSTATUS)0xC004001EL)
383
384//
385// MessageId: IO_BAD_BLOCK_WITH_NAME
386//
387// MessageText:
388//
389// The file %2 on device %1 contains a bad disk block.
390//
391#define IO_BAD_BLOCK_WITH_NAME ((NTSTATUS)0xC004001FL)
392
393//
394// MessageId: IO_WRITE_CACHE_ENABLED
395//
396// MessageText:
397//
398// The driver detected that the device %1 has its write cache enabled. Data corruption
399// may occur.
400//
401#define IO_WRITE_CACHE_ENABLED ((NTSTATUS)0x80040020L)
402
403//
404// MessageId: IO_RECOVERED_VIA_ECC
405//
406// MessageText:
407//
408// Data was recovered using error correction code on device %1.
409//
410#define IO_RECOVERED_VIA_ECC ((NTSTATUS)0x80040021L)
411
412//
413// MessageId: IO_WRITE_CACHE_DISABLED
414//
415// MessageText:
416//
417// The driver disabled the write cache on device %1.
418//
419#define IO_WRITE_CACHE_DISABLED ((NTSTATUS)0x80040022L)
420
421//
422// MessageId: IO_FILE_QUOTA_THRESHOLD
423//
424// MessageText:
425//
426// A user hit their quota threshold on volume %2.
427//
428#define IO_FILE_QUOTA_THRESHOLD ((NTSTATUS)0x40040024L)
429
430//
431// MessageId: IO_FILE_QUOTA_LIMIT
432//
433// MessageText:
434//
435// A user hit their quota limit on volume %2.
436//
437#define IO_FILE_QUOTA_LIMIT ((NTSTATUS)0x40040025L)
438
439//
440// MessageId: IO_FILE_QUOTA_STARTED
441//
442// MessageText:
443//
444// The system has started rebuilding the user disk quota information on
445// device %1 with label "%2".
446//
447#define IO_FILE_QUOTA_STARTED ((NTSTATUS)0x40040026L)
448
449//
450// MessageId: IO_FILE_QUOTA_SUCCEEDED
451//
452// MessageText:
453//
454// The system has successfully rebuilt the user disk quota information on
455// device %1 with label "%2".
456//
457#define IO_FILE_QUOTA_SUCCEEDED ((NTSTATUS)0x40040027L)
458
459//
460// MessageId: IO_FILE_QUOTA_FAILED
461//
462// MessageText:
463//
464// The system has encounted an error rebuilding the user disk quota
465// information on device %1 with label "%2".
466//
467#define IO_FILE_QUOTA_FAILED ((NTSTATUS)0x80040028L)
468
469//
470// MessageId: IO_FILE_SYSTEM_CORRUPT
471//
472// MessageText:
473//
474// The file system structure on the disk is corrupt and unusable.
475// Please run the chkdsk utility on the device %1 with label "%2".
476//
477#define IO_FILE_SYSTEM_CORRUPT ((NTSTATUS)0xC0040029L)
478
479//
480// MessageId: IO_FILE_QUOTA_CORRUPT
481//
482// MessageText:
483//
484// The user disk quota information is unusable.
485// To ensure accuracy, the file system quota information on the device %1 with label "%2" will
486// be rebuilt.
487//
488#define IO_FILE_QUOTA_CORRUPT ((NTSTATUS)0xC004002AL)
489
490//
491// MessageId: IO_SYSTEM_SLEEP_FAILED
492//
493// MessageText:
494//
495// The system sleep operation failed
496//
497#define IO_SYSTEM_SLEEP_FAILED ((NTSTATUS)0xC004002BL)
498
499//
500// MessageId: IO_DUMP_POINTER_FAILURE
501//
502// MessageText:
503//
504// The system could not get file retrieval pointers for the dump file.
505//
506#define IO_DUMP_POINTER_FAILURE ((NTSTATUS)0xC004002CL)
507
508//
509// MessageId: IO_DUMP_DRIVER_LOAD_FAILURE
510//
511// MessageText:
512//
513// The system could not sucessfully load the crash dump driver.
514//
515#define IO_DUMP_DRIVER_LOAD_FAILURE ((NTSTATUS)0xC004002DL)
516
517//
518// MessageId: IO_DUMP_INITIALIZATION_FAILURE
519//
520// MessageText:
521//
522// Crash dump initialization failed!
523//
524#define IO_DUMP_INITIALIZATION_FAILURE ((NTSTATUS)0xC004002EL)
525
526//
527// MessageId: IO_DUMP_DUMPFILE_CONFLICT
528//
529// MessageText:
530//
531// A valid crash dump was found in the paging file while trying to configure
532// a direct dump. Direct dump is disabled! This occurs when the direct dump
533// option is set in the registry but a stop error occured before configuration
534// completed
535//
536#define IO_DUMP_DUMPFILE_CONFLICT ((NTSTATUS)0xC004002FL)
537
538//
539// MessageId: IO_DUMP_DIRECT_CONFIG_FAILED
540//
541// MessageText:
542//
543// Direct dump configuration failed. Validate the filename and make sure the target device
544// is not a Fault Tolerant set member, remote, or floppy device. The failure may
545// be because there is not enough room on the dump device to create the dump file.
546//
547#define IO_DUMP_DIRECT_CONFIG_FAILED ((NTSTATUS)0xC0040030L)
548
549//
550// MessageId: IO_DUMP_PAGE_CONFIG_FAILED
551//
552// MessageText:
553//
554// Configuring the Page file for crash dump failed. Make sure there is a page
555// file on the boot partition and that is large enough to contain all physical
556// memory.
557//
558#define IO_DUMP_PAGE_CONFIG_FAILED ((NTSTATUS)0xC0040031L)
559
560//
561// MessageId: IO_LOST_DELAYED_WRITE
562//
563// MessageText:
564//
565// {Delayed Write Failed}
566// Windows was unable to save all the data for the file %1. The data has been lost.
567// This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
568//
569#define IO_LOST_DELAYED_WRITE ((NTSTATUS)0x80040032L)
570
571//
572// MessageId: IO_WARNING_PAGING_FAILURE
573//
574// MessageText:
575//
576// An error was detected on device %1 during a paging operation.
577//
578#define IO_WARNING_PAGING_FAILURE ((NTSTATUS)0x80040033L)
579
580//
581// MessageId: IO_WRN_FAILURE_PREDICTED
582//
583// MessageText:
584//
585// The driver has detected that device %1 has predicted that it will fail.
586// Immediately back up your data and replace your hard disk drive. A failure
587// may be imminent.
588//
589#define IO_WRN_FAILURE_PREDICTED ((NTSTATUS)0x80040034L)
590
591//
592// MessageId: IO_WARNING_INTERRUPT_STILL_PENDING
593//
594// MessageText:
595//
596// A pending interrupt was detected on device %1 during a timeout operation. A
597// large number of these warnings may indicate that the system is not correctly
598// receiving or processing interrupts from the device.
599//
600#define IO_WARNING_INTERRUPT_STILL_PENDING ((NTSTATUS)0x80040035L)
601
602//
603// MessageId: IO_DRIVER_CANCEL_TIMEOUT
604//
605// MessageText:
606//
607// An Io Request to the device %1 did not complete or canceled within the
608// specific timeout. This can occur if the device driver does not set a
609// cancel routine for a given IO request packet.
610//
611#define IO_DRIVER_CANCEL_TIMEOUT ((NTSTATUS)0x80040036L)
612
613//
614// MessageId: IO_FILE_SYSTEM_CORRUPT_WITH_NAME
615//
616// MessageText:
617//
618// The file system structure on the disk is corrupt and unusable.
619// Please run the chkdsk utility on the volume %2.
620//
621#define IO_FILE_SYSTEM_CORRUPT_WITH_NAME ((NTSTATUS)0xC0040037L)
622
623//
624// MessageId: IO_WARNING_ALLOCATION_FAILED
625//
626// MessageText:
627//
628// The driver failed to allocate memory.
629//
630#define IO_WARNING_ALLOCATION_FAILED ((NTSTATUS)0x80040038L)
631
632//
633// MessageId: IO_WARNING_LOG_FLUSH_FAILED
634//
635// MessageText:
636//
637// The system failed to flush data to the transaction log. Corruption may occur.
638//
639#define IO_WARNING_LOG_FLUSH_FAILED ((NTSTATUS)0x80040039L)
640
641//
642// MessageId: IO_WARNING_DUPLICATE_SIGNATURE
643//
644// MessageText:
645//
646// Changing the disk signature of disk %2 because it is equal to the disk
647// signature of disk %3.
648//
649#define IO_WARNING_DUPLICATE_SIGNATURE ((NTSTATUS)0x8004003AL)
650
651//
652// MessageId: IO_WARNING_DUPLICATE_PATH
653//
654// MessageText:
655//
656// Disk %2 will not be used because it is a redundant path for disk %3.
657//
658#define IO_WARNING_DUPLICATE_PATH ((NTSTATUS)0x8004003BL)
659
660//
661// MessageId: MCA_WARNING_CACHE
662//
663// MessageText:
664//
665// Machine Check Event reported is a corrected level %3 Cache error reported to CPU %1. %2 additional error(s) are contained within the record.
666//
667#define MCA_WARNING_CACHE ((NTSTATUS)0x8005003CL)
668
669//
670// MessageId: MCA_ERROR_CACHE
671//
672// MessageText:
673//
674// Machine Check Event reported is a fatal level %3 Cache error reported to CPU %1. %2 additional error(s) are contained within the record.
675//
676#define MCA_ERROR_CACHE ((NTSTATUS)0xC005003DL)
677
678//
679// MessageId: MCA_WARNING_TLB
680//
681// MessageText:
682//
683// 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.
684//
685#define MCA_WARNING_TLB ((NTSTATUS)0x8005003EL)
686
687//
688// MessageId: MCA_ERROR_TLB
689//
690// MessageText:
691//
692// 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.
693//
694#define MCA_ERROR_TLB ((NTSTATUS)0xC005003FL)
695
696//
697// MessageId: MCA_WARNING_CPU_BUS
698//
699// MessageText:
700//
701// Machine Check Event reported is a corrected External/Internal bus error reported to CPU %1. %2 additional error(s) are contained within the record.
702//
703#define MCA_WARNING_CPU_BUS ((NTSTATUS)0x80050040L)
704
705//
706// MessageId: MCA_ERROR_CPU_BUS
707//
708// MessageText:
709//
710// Machine Check Event reported is a fatal External/Internal bus error reported to CPU %1. %2 additional error(s) are contained within the record.
711//
712#define MCA_ERROR_CPU_BUS ((NTSTATUS)0xC0050041L)
713
714//
715// MessageId: MCA_WARNING_REGISTER_FILE
716//
717// MessageText:
718//
719// 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.
720//
721#define MCA_WARNING_REGISTER_FILE ((NTSTATUS)0x80050042L)
722
723//
724// MessageId: MCA_ERROR_REGISTER_FILE
725//
726// MessageText:
727//
728// 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.
729//
730#define MCA_ERROR_REGISTER_FILE ((NTSTATUS)0xC0050043L)
731
732//
733// MessageId: MCA_WARNING_MAS
734//
735// MessageText:
736//
737// Machine Check Event reported is a corrected Micro Architecture Structure error reported to CPU %1. %2 additional error(s) are contained within the record.
738//
739#define MCA_WARNING_MAS ((NTSTATUS)0x80050044L)
740
741//
742// MessageId: MCA_ERROR_MAS
743//
744// MessageText:
745//
746// Machine Check Event reported is a fatal Micro Architecture Structure error reported to CPU %1. %2 additional error(s) are contained within the record.
747//
748#define MCA_ERROR_MAS ((NTSTATUS)0xC0050045L)
749
750//
751// MessageId: MCA_WARNING_MEM_UNKNOWN
752//
753// MessageText:
754//
755// 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.
756//
757#define MCA_WARNING_MEM_UNKNOWN ((NTSTATUS)0x80050046L)
758
759//
760// MessageId: MCA_ERROR_MEM_UNKNOWN
761//
762// MessageText:
763//
764// 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.
765//
766#define MCA_ERROR_MEM_UNKNOWN ((NTSTATUS)0xC0050047L)
767
768//
769// MessageId: MCA_WARNING_MEM_1_2
770//
771// MessageText:
772//
773// 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.
774//
775#define MCA_WARNING_MEM_1_2 ((NTSTATUS)0x80050048L)
776
777//
778// MessageId: MCA_ERROR_MEM_1_2
779//
780// MessageText:
781//
782// 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.
783//
784#define MCA_ERROR_MEM_1_2 ((NTSTATUS)0xC0050049L)
785
786//
787// MessageId: MCA_WARNING_MEM_1_2_5
788//
789// MessageText:
790//
791// 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.
792//
793#define MCA_WARNING_MEM_1_2_5 ((NTSTATUS)0x8005004AL)
794
795//
796// MessageId: MCA_ERROR_MEM_1_2_5
797//
798// MessageText:
799//
800// 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.
801//
802#define MCA_ERROR_MEM_1_2_5 ((NTSTATUS)0xC005004BL)
803
804//
805// MessageId: MCA_WARNING_MEM_1_2_5_4
806//
807// MessageText:
808//
809// 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.
810//
811#define MCA_WARNING_MEM_1_2_5_4 ((NTSTATUS)0x8005004CL)
812
813//
814// MessageId: MCA_ERROR_MEM_1_2_5_4
815//
816// MessageText:
817//
818// 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.
819//
820#define MCA_ERROR_MEM_1_2_5_4 ((NTSTATUS)0xC005004DL)
821
822//
823// MessageId: MCA_WARNING_SYSTEM_EVENT
824//
825// MessageText:
826//
827// Machine Check Event reported is a corrected System Event error reported to CPU %1. %2 additional error(s) are contained within the record.
828//
829#define MCA_WARNING_SYSTEM_EVENT ((NTSTATUS)0x8005004EL)
830
831//
832// MessageId: MCA_ERROR_SYSTEM_EVENT
833//
834// MessageText:
835//
836// Machine Check Event reported is a fatal System Event error reported to CPU %1. %2 additional error(s) are contained within the record.
837//
838#define MCA_ERROR_SYSTEM_EVENT ((NTSTATUS)0xC005004FL)
839
840//
841// MessageId: MCA_WARNING_PCI_BUS_PARITY
842//
843// MessageText:
844//
845// 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.
846//
847#define MCA_WARNING_PCI_BUS_PARITY ((NTSTATUS)0x80050050L)
848
849//
850// MessageId: MCA_ERROR_PCI_BUS_PARITY
851//
852// MessageText:
853//
854// 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.
855//
856#define MCA_ERROR_PCI_BUS_PARITY ((NTSTATUS)0xC0050051L)
857
858//
859// MessageId: MCA_WARNING_PCI_BUS_PARITY_NO_INFO
860//
861// MessageText:
862//
863// Machine Check Event reported is a corrected PCI bus Parity error reported to CPU %1. %2 additional error(s) are contained within the record.
864//
865#define MCA_WARNING_PCI_BUS_PARITY_NO_INFO ((NTSTATUS)0x80050052L)
866
867//
868// MessageId: MCA_ERROR_PCI_BUS_PARITY_NO_INFO
869//
870// MessageText:
871//
872// Machine Check Event reported is a fatal PCI bus Parity error reported to CPU %1. %2 additional error(s) are contained within the record.
873//
874#define MCA_ERROR_PCI_BUS_PARITY_NO_INFO ((NTSTATUS)0xC0050053L)
875
876//
877// MessageId: MCA_WARNING_PCI_BUS_SERR
878//
879// MessageText:
880//
881// 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.
882//
883#define MCA_WARNING_PCI_BUS_SERR ((NTSTATUS)0x80050054L)
884
885//
886// MessageId: MCA_ERROR_PCI_BUS_SERR
887//
888// MessageText:
889//
890// 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.
891//
892#define MCA_ERROR_PCI_BUS_SERR ((NTSTATUS)0xC0050055L)
893
894//
895// MessageId: MCA_WARNING_PCI_BUS_SERR_NO_INFO
896//
897// MessageText:
898//
899// Machine Check Event reported is a corrected PCI bus SERR error reported to CPU %1. %2 additional error(s) are contained within the record.
900//
901#define MCA_WARNING_PCI_BUS_SERR_NO_INFO ((NTSTATUS)0x80050056L)
902
903//
904// MessageId: MCA_ERROR_PCI_BUS_SERR_NO_INFO
905//
906// MessageText:
907//
908// Machine Check Event reported is a fatal PCI bus SERR error reported to CPU %1. %2 additional error(s) are contained within the record.
909//
910#define MCA_ERROR_PCI_BUS_SERR_NO_INFO ((NTSTATUS)0xC0050057L)
911
912//
913// MessageId: MCA_WARNING_PCI_BUS_MASTER_ABORT
914//
915// MessageText:
916//
917// 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.
918//
919#define MCA_WARNING_PCI_BUS_MASTER_ABORT ((NTSTATUS)0x80050058L)
920
921//
922// MessageId: MCA_ERROR_PCI_BUS_MASTER_ABORT
923//
924// MessageText:
925//
926// 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.
927//
928#define MCA_ERROR_PCI_BUS_MASTER_ABORT ((NTSTATUS)0xC0050059L)
929
930//
931// MessageId: MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO
932//
933// MessageText:
934//
935// 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.
936//
937#define MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO ((NTSTATUS)0x8005005AL)
938
939//
940// MessageId: MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO
941//
942// MessageText:
943//
944// 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.
945//
946#define MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO ((NTSTATUS)0xC005005BL)
947
948//
949// MessageId: MCA_WARNING_PCI_BUS_TIMEOUT
950//
951// MessageText:
952//
953// 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.
954//
955#define MCA_WARNING_PCI_BUS_TIMEOUT ((NTSTATUS)0x8005005CL)
956
957//
958// MessageId: MCA_ERROR_PCI_BUS_TIMEOUT
959//
960// MessageText:
961//
962// 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.
963//
964#define MCA_ERROR_PCI_BUS_TIMEOUT ((NTSTATUS)0xC005005DL)
965
966//
967// MessageId: MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO
968//
969// MessageText:
970//
971// Machine Check Event reported is a corrected PCI bus Timeout error reported to CPU %1. %2 additional error(s) are contained within the record.
972//
973#define MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO ((NTSTATUS)0x8005005EL)
974
975//
976// MessageId: MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO
977//
978// MessageText:
979//
980// Machine Check Event reported is a fatal PCI bus Timeout error reported to CPU %1. %2 additional error(s) are contained within the record.
981//
982#define MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO ((NTSTATUS)0xC005005FL)
983
984//
985// MessageId: MCA_WARNING_PCI_BUS_UNKNOWN
986//
987// MessageText:
988//
989// Machine Check Event reported is an unknown corrected PCI bus error reported to CPU %1. %2 additional error(s) are contained within the record.
990//
991#define MCA_WARNING_PCI_BUS_UNKNOWN ((NTSTATUS)0x80050060L)
992
993//
994// MessageId: MCA_ERROR_PCI_BUS_UNKNOWN
995//
996// MessageText:
997//
998// Machine Check Event reported is an unknown fatal PCI bus error reported to CPU %1. %2 additional error(s) are contained within the record.
999//
1000#define MCA_ERROR_PCI_BUS_UNKNOWN ((NTSTATUS)0xC0050061L)
1001
1002//
1003// MessageId: MCA_WARNING_PCI_DEVICE
1004//
1005// MessageText:
1006//
1007// Machine Check Event reported is a corrected PCI component error reported to CPU %1. %2 additional error(s) are contained within the record.
1008//
1009#define MCA_WARNING_PCI_DEVICE ((NTSTATUS)0x80050062L)
1010
1011//
1012// MessageId: MCA_ERROR_PCI_DEVICE
1013//
1014// MessageText:
1015//
1016// Machine Check Event reported is a fatal PCI component error reported to CPU %1. %2 additional error(s) are contained within the record.
1017//
1018#define MCA_ERROR_PCI_DEVICE ((NTSTATUS)0xC0050063L)
1019
1020//
1021// MessageId: MCA_WARNING_SMBIOS
1022//
1023// MessageText:
1024//
1025// 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.
1026//
1027#define MCA_WARNING_SMBIOS ((NTSTATUS)0x80050064L)
1028
1029//
1030// MessageId: MCA_ERROR_SMBIOS
1031//
1032// MessageText:
1033//
1034// 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.
1035//
1036#define MCA_ERROR_SMBIOS ((NTSTATUS)0xC0050065L)
1037
1038//
1039// MessageId: MCA_WARNING_PLATFORM_SPECIFIC
1040//
1041// MessageText:
1042//
1043// Machine Check Event reported is a corrected Platform Specific error reported to CPU %1. %2 additional error(s) are contained within the record.
1044//
1045#define MCA_WARNING_PLATFORM_SPECIFIC ((NTSTATUS)0x80050066L)
1046
1047//
1048// MessageId: MCA_ERROR_PLATFORM_SPECIFIC
1049//
1050// MessageText:
1051//
1052// Machine Check Event reported is a fatal Platform Specific error reported to CPU %1. %2 additional error(s) are contained within the record.
1053//
1054#define MCA_ERROR_PLATFORM_SPECIFIC ((NTSTATUS)0xC0050067L)
1055
1056//
1057// MessageId: MCA_WARNING_UNKNOWN
1058//
1059// MessageText:
1060//
1061// Machine Check Event reported is a corrected error reported to CPU %1.
1062//
1063#define MCA_WARNING_UNKNOWN ((NTSTATUS)0x80050068L)
1064
1065//
1066// MessageId: MCA_ERROR_UNKNOWN
1067//
1068// MessageText:
1069//
1070// Machine Check Event reported is a fatal error reported to CPU %1.
1071//
1072#define MCA_ERROR_UNKNOWN ((NTSTATUS)0xC0050069L)
1073
1074//
1075// MessageId: MCA_WARNING_UNKNOWN_NO_CPU
1076//
1077// MessageText:
1078//
1079// Machine Check Event reported is a corrected error.
1080//
1081#define MCA_WARNING_UNKNOWN_NO_CPU ((NTSTATUS)0x8005006AL)
1082
1083//
1084// MessageId: MCA_ERROR_UNKNOWN_NO_CPU
1085//
1086// MessageText:
1087//
1088// Machine Check Event reported is a fatal error.
1089//
1090#define MCA_ERROR_UNKNOWN_NO_CPU ((NTSTATUS)0xC005006BL)
1091
1092//
1093// MessageId: IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER
1094//
1095// MessageText:
1096//
1097// The driver %3 for the %2 device %1 got stuck in an infinite loop. This
1098// usually indicates a problem with the device itself or with the device
1099// driver programming the hardware incorrectly. Please check with your
1100// hardware device vendor for any driver updates.
1101//
1102#define IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER ((NTSTATUS)0xC004006CL)
1103
1104//
1105// MessageId: MCA_WARNING_CMC_THRESHOLD_EXCEEDED
1106//
1107// MessageText:
1108//
1109// Corrected Machine Check Interrupt threshold exceeded. Interrupt has been disabled. Polling mode has been enabled.
1110//
1111#define MCA_WARNING_CMC_THRESHOLD_EXCEEDED ((NTSTATUS)0x8005006DL)
1112
1113//
1114// MessageId: MCA_WARNING_CPE_THRESHOLD_EXCEEDED
1115//
1116// MessageText:
1117//
1118// Corrected Platform Error Interrupt threshold exceeded. Interrupt has been disabled. Polling mode has been enabled.
1119//
1120#define MCA_WARNING_CPE_THRESHOLD_EXCEEDED ((NTSTATUS)0x8005006EL)
1121
1122//
1123// MessageId: MCA_WARNING_CPU_THERMAL_THROTTLED
1124//
1125// MessageText:
1126//
1127// 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.
1128//
1129#define MCA_WARNING_CPU_THERMAL_THROTTLED ((NTSTATUS)0x8005006FL)
1130
1131//
1132// MessageId: MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED
1133//
1134// MessageText:
1135//
1136// 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.
1137//
1138#define MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED ((NTSTATUS)0x40050070L)
1139
1140//
1141// MessageId: MCA_WARNING_CPU
1142//
1143// MessageText:
1144//
1145// Machine Check Event reported is a corrected CPU error reported from CPU %1. %2 additional error(s) are contained within the record.
1146//
1147#define MCA_WARNING_CPU ((NTSTATUS)0x80050071L)
1148
1149//
1150// MessageId: MCA_ERROR_CPU
1151//
1152// MessageText:
1153//
1154// Machine Check Event reported is a fatal CPU error reported to CPU %1. %2 additional error(s) are contained within the record.
1155//
1156#define MCA_ERROR_CPU ((NTSTATUS)0xC0050072L)
1157
1158//
1159// MessageId: MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS
1160//
1161// MessageText:
1162//
1163// 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.
1164//
1165#define MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS ((NTSTATUS)0x40050073L)
1166
1167//
1168// MessageId: MCA_INFO_MEMORY_PAGE_MARKED_BAD
1169//
1170// MessageText:
1171//
1172// 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.
1173//
1174#define MCA_INFO_MEMORY_PAGE_MARKED_BAD ((NTSTATUS)0x40050074L)
1175
1176//
1177// MessageId: IO_ERR_PORT_TIMEOUT
1178//
1179// MessageText:
1180//
1181// 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.
1182//
1183#define IO_ERR_PORT_TIMEOUT ((NTSTATUS)0xC0040075L)
1184
1185//
1186// MessageId: IO_WARNING_BUS_RESET
1187//
1188// MessageText:
1189//
1190// The driver for device %1 performed a bus reset upon request.
1191//
1192#define IO_WARNING_BUS_RESET ((NTSTATUS)0x80040076L)
1193
1194//
1195// MessageId: IO_INFO_THROTTLE_COMPLETE
1196//
1197// MessageText:
1198//
1199// The driver for device %1 delayed non-paging Io requests for %2 ms to recover from a low memory condition.
1200//
1201#define IO_INFO_THROTTLE_COMPLETE ((NTSTATUS)0x40040077L)
1202
1203#endif /* _NTIOLOGC_ */
1204
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette