Click to Rate and Give Feedback
MSDN
MSDN Library
Windows Development
System Technologies
WHEA
Reference
 tidPlatformMemoryError
tidPlatformMemoryError

Beginning with Windows Server 2008 and Windows Vista SP1, the Windows Hardware Error Architecture (WHEA) uses the tidPlatformMemoryError data template to report the hardware error data that is associated with platform memory WHEA hardware error events that are logged in the system event log. The tidPlatformMemoryError data template is defined as follows:

<template tid="tidPlatformMemoryError">
  <data name="FRUId" inType="win:GUID"></data>
  <data name="FRUText" inType="win:AnsiString" length="20"></data>
  <data name="ValidBits" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="ErrorStatus" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="PhysicalAddress" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="PhysicalAddressMask" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="Node" inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Card" inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Module"     inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Bank" inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Device"       inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Row" inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="Column"     inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="BitPosition" inType="win:HexInt32" outType="win:HexInt32"></data>
  <data name="RequesterId" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="ResponderId" inType="win:HexInt64" outType="win:HexInt64"></data>
  <data name="TargetId" inType="win:HexInt64"    outType="win:HexInt64"></data>
  <data name="ErrorType" inType="win:UInt8" map="whealogr:mapMemoryErrorType"></data>
  <data name="Length" inType="win:UInt32"></data>
  <data name="RawData" inType="win:Binary" length="Length"></data>
</template>

Data Fields

FRUId

A GUID that uniquely identifies the Field Replaceable Unit (FRU) that contains the hardware that caused the error condition. The data type for this field is EvtVarTypeGuid.

FRUText

A character string that identifies the Field Replaceable Unit (FRU) that contains the hardware that caused the error condition. The data type for this field is EvtVarTypeAnsiString.

ValidBits

A bitmask that specifies which fields of this data template contain valid data. The data type for this field is EvtVarTypeHexInt64. This field contains a WHEA_MEMORY_ERROR_SECTION_VALIDBITS union.

ErrorStatus

A WHEA_ERROR_STATUS structure that contains memory error status data. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the ErrorStatus bit is set in the ValidBits field.

PhysicalAddress

The physical address where the memory error occurred. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the PhysicalAddress bit is set in the ValidBits field.

PhysicalAddressMask

A bit mask that specifies which of the bits in the PhysicalAddress field contain valid address data. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the PhysicalAddressMask bit is set in the ValidBits field.

Node

The identifier of the node that contains the memory where the memory error occurred in a system with multiple nodes. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Node bit is set in the ValidBits field.

Card

The card number of the card that contains the memory where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Card bit is set in the ValidBits field.

Module

The module number of the module that contains the memory where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Module bit is set in the ValidBits field.

Bank

The bank number of the memory bank that contains the memory where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Bank bit is set in the ValidBits field.

Device

The device number of the memory device that contains the memory where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Device bit is set in the ValidBits field.

Row

The row number of the location where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Row bit is set in the ValidBits field.

Column

The column number of the location where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the Column bit is set in the ValidBits field.

BitPosition

The bit position where the memory error occurred. The data type for this field is EvtVarTypeHexInt32.

This field contains valid data only if the BitPosition bit is set in the ValidBits field.

RequesterId

An identifier that uniquely identifies the requester associated with the error. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the RequesterId bit is set in the ValidBits field.

ResponderId

An identifier that uniquely identifies the responder associated with the error. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the ResponderId bit is set in the ValidBits field.

TargetId

The hardware address of the intended target of the transaction. The data type for this field is EvtVarTypeHexInt64.

This field contains valid data only if the TargetId bit is set in the ValidBits field.

ErrorType

The type of memory error that occurred. The data type for this field is EvtVarTypeByte.

Possible values are:

0

An unknown error.

1

No error occurred.

2

A single bit ECC error.

3

A multibit ECC error.

4

A single symbol ChipKill ECC error.

5

A multiple symbol ChipKill ECC error.

6

A master abort.

7

A target abort.

8

A parity error.

9

A watchdog timeout.

10

An invalid memory address.

11

A broken memory mirror.

12

A memory sparing error.

This field contains valid data only if the ErrorType bit is set in the ValidBits field.

Length

The length, in bytes, of the error record that describes the error condition. The data type for this field is EvtVarTypeUInt32.

RawData

A pointer to the error record that describes the error condition. The data type for this field is EvtVarTypeBinary. This field contains a pointer to a WHEA_ERROR_RECORD structure.

Note   The tidPlatformMemoryError data template is used only for Windows Server 2008, Windows Vista SP1, and later versions of Windows. For information about the data templates used for Windows Vista, see WHEA Hardware Error Events (Windows Vista).

 

 

Send comments about this topic to Microsoft

Build date: 12/8/2011

© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker