PPCI_CORRECTABLE_ERROR_MASK - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// miniport.h

typedef union _PCI_EXPRESS_CORRECTABLE_ERROR_MASK {
  struct {
    ULONG ReceiverError : 1;
    ULONG Reserved1 : 5;
    ULONG BadTLP : 1;
    ULONG BadDLLP : 1;
    ULONG ReplayNumRollover : 1;
    ULONG Reserved2 : 3;
    ULONG ReplayTimerTimeout : 1;
    ULONG AdvisoryNonFatalError : 1;
    ULONG CorrectedInternalError : 1;
    ULONG HeaderLogOverflow : 1;
    ULONG Reserved3 : 16;
  } DUMMYSTRUCTNAME;
  ULONG  AsULONG;
} PCI_EXPRESS_CORRECTABLE_ERROR_MASK, *PPCI_CORRECTABLE_ERROR_MASK;
View the official Windows Driver Kit DDI reference
// wdm.h

typedef union _PCI_EXPRESS_CORRECTABLE_ERROR_MASK {
  struct {
    ULONG ReceiverError  :1;
    ULONG Reserved1  :5;
    ULONG BadTLP  :1;
    ULONG BadDLLP  :1;
    ULONG ReplayNumRollover  :1;
    ULONG Reserved2  :3;
    ULONG ReplayTimerTimeout  :1;
    ULONG AdvisoryNonFatalError  :1;
    ULONG Reserved3  :18;
  };
  ULONG  AsULONG;
} PCI_EXPRESS_CORRECTABLE_ERROR_MASK, *PPCI_CORRECTABLE_ERROR_MASK;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-miniport-_pci_express_correctable_error_mask)

Description

The PCI_EXPRESS_CORRECTABLE_ERROR_MASK union describes a PCI Express (PCIe) correctable error mask register of a PCIe advanced error reporting capability structure.

Members

DUMMYSTRUCTNAME

The DUMMYSTRUCTNAME structure.

DUMMYSTRUCTNAME.ReceiverError

A single bit that indicates that the reporting of receiver errors is masked.

DUMMYSTRUCTNAME.Reserved1

Reserved.

DUMMYSTRUCTNAME.BadTLP

A single bit that indicates that the reporting of bad transaction layer packets (TLPs) is masked.

DUMMYSTRUCTNAME.BadDLLP

A single bit that indicates that the reporting of bad data link layer packets (DLLPs) is masked.

DUMMYSTRUCTNAME.ReplayNumRollover

A single bit that indicates that the reporting of rollovers of the counter that counts the number of times the retry buffer has been re-transmitted is masked.

DUMMYSTRUCTNAME.Reserved2

Reserved.

DUMMYSTRUCTNAME.ReplayTimerTimeout

A single bit that indicates that the reporting of timeouts of the replay timer is masked.

DUMMYSTRUCTNAME.AdvisoryNonFatalError

A single bit that indicates that the reporting of advisory non-fatal errors is masked.

DUMMYSTRUCTNAME.CorrectedInternalError

Defines the ULONG member CorrectedInternalError.

DUMMYSTRUCTNAME.HeaderLogOverflow

Defines the ULONG member HeaderLogOverflow.

DUMMYSTRUCTNAME.Reserved3

Reserved.

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_CORRECTABLE_ERROR_MASK union.

Remarks

The PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure is available in Windows Server 2008 and later versions of Windows.

A PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure is contained in the PCI_EXPRESS_AER_CAPABILITY, PCI_EXPRESS_BRIDGE_AER_CAPABILITY, and PCI_EXPRESS_ROOTPORT_AER_CAPABILITY structures.

See also

PCI_EXPRESS_AER_CAPABILITY

PCI_EXPRESS_BRIDGE_AER_CAPABILITY

PCI_EXPRESS_ROOTPORT_AER_CAPABILITY


Windows Driver Kit DDI reference (ns-wdm-_pci_express_correctable_error_mask)

_PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure (wdm.h)

Description

The PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure describes a PCI Express (PCIe) correctable error mask register of a PCIe advanced error reporting capability structure.

Members

DUMMYSTRUCTNAME

DUMMYSTRUCTNAME.AdvisoryNonFatalError

A single bit that indicates that the reporting of advisory non-fatal errors is masked.

DUMMYSTRUCTNAME.BadDLLP

A single bit that indicates that the reporting of bad data link layer packets (DLLPs) is masked.

DUMMYSTRUCTNAME.BadTLP

A single bit that indicates that the reporting of bad transaction layer packets (TLPs) is masked.

DUMMYSTRUCTNAME.ReceiverError

A single bit that indicates that the reporting of receiver errors is masked.

DUMMYSTRUCTNAME.ReplayNumRollover

A single bit that indicates that the reporting of rollovers of the counter that counts the number of times the retry buffer has been re-transmitted is masked.

DUMMYSTRUCTNAME.ReplayTimerTimeout

A single bit that indicates that the reporting of timeouts of the replay timer is masked.

DUMMYSTRUCTNAME.Reserved1

Reserved.

DUMMYSTRUCTNAME.Reserved2

Reserved.

DUMMYSTRUCTNAME.CorrectedInternalError

DUMMYSTRUCTNAME.HeaderLogOverflow

DUMMYSTRUCTNAME.Reserved3

Reserved.

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure.

Syntax

typedef union _PCI_EXPRESS_CORRECTABLE_ERROR_MASK {
  struct {
    ULONG ReceiverError  :1;
    ULONG Reserved1  :5;
    ULONG BadTLP  :1;
    ULONG BadDLLP  :1;
    ULONG ReplayNumRollover  :1;
    ULONG Reserved2  :3;
    ULONG ReplayTimerTimeout  :1;
    ULONG AdvisoryNonFatalError  :1;
    ULONG Reserved3  :18;
  };
  ULONG  AsULONG;
} PCI_EXPRESS_CORRECTABLE_ERROR_MASK, *PPCI_CORRECTABLE_ERROR_MASK;

Remarks

The PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure is available in Windows Server 2008 and later versions of Windows.

A PCI_EXPRESS_CORRECTABLE_ERROR_MASK structure is contained in the PCI_EXPRESS_AER_CAPABILITY, PCI_EXPRESS_BRIDGE_AER_CAPABILITY, and PCI_EXPRESS_ROOTPORT_AER_CAPABILITY structures.

See also

PCI_EXPRESS_AER_CAPABILITY

PCI_EXPRESS_BRIDGE_AER_CAPABILITY

PCI_EXPRESS_ROOTPORT_AER_CAPABILITY