PCI_EXPRESS_ROOT_ERROR_COMMAND union (miniport.h)

The PCI_EXPRESS_ROOT_ERROR_COMMAND union describes a PCI Express (PCIe) root error command register of a PCIe advanced error reporting capability structure.

Syntax

typedef union _PCI_EXPRESS_ROOT_ERROR_COMMAND {
  struct {
    ULONG CorrectableErrorReportingEnable : 1;
    ULONG NonFatalErrorReportingEnable : 1;
    ULONG FatalErrorReportingEnable : 1;
    ULONG Reserved : 29;
  } DUMMYSTRUCTNAME;
  ULONG  AsULONG;
} PCI_EXPRESS_ROOT_ERROR_COMMAND, *PPCI_EXPRESS_ROOT_ERROR_COMMAND;

Members

DUMMYSTRUCTNAME

The DUMMYSTRUCTNAME structure.

DUMMYSTRUCTNAME.CorrectableErrorReportingEnable

A single bit that indicates that interrupts are enabled for when a correctable error is reported by any of the devices in the hierarchy that are associated with this root port.

DUMMYSTRUCTNAME.NonFatalErrorReportingEnable

A single bit that indicates that interrupts are enabled for when a non-fatal error is reported by any of the devices in the hierarchy that are associated with this root port.

DUMMYSTRUCTNAME.FatalErrorReportingEnable

A single bit that indicates that interrupts are enabled for when a non-fatal error is reported by any of the devices in the hierarchy that are associated with this root port.

DUMMYSTRUCTNAME.Reserved

Reserved.

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_ROOT_ERROR_COMMAND structure.

Remarks

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

A PCI_EXPRESS_ROOT_ERROR_COMMAND structure is contained in the PCI_EXPRESS_ROOTPORT_AER_CAPABILITY structure.

Requirements

Requirement Value
Header miniport.h (include Ntddk.h, Wdm.h, Miniport.h)

See also

PCI_EXPRESS_ROOTPORT_AER_CAPABILITY