PCI_EXPRESS_ROOT_ERROR_COMMAND - NtDoc

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

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;
View the official Windows Driver Kit DDI reference
// wdm.h

typedef union _PCI_EXPRESS_ROOT_ERROR_COMMAND {
  struct {
    ULONG CorrectableErrorReportingEnable  :1;
    ULONG NonFatalErrorReportingEnable  :1;
    ULONG FatalErrorReportingEnable  :1;
    ULONG Reserved  :29;
  };
  ULONG  AsULONG;
} PCI_EXPRESS_ROOT_ERROR_COMMAND, *PPCI_EXPRESS_ROOT_ERROR_COMMAND;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

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

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.

See also

PCI_EXPRESS_ROOTPORT_AER_CAPABILITY


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

_PCI_EXPRESS_ROOT_ERROR_COMMAND structure (wdm.h)

Description

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

Members

DUMMYSTRUCTNAME

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_ROOT_ERROR_COMMAND 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.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.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.Reserved

Reserved.

Syntax

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

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.

See also

PCI_EXPRESS_ROOTPORT_AER_CAPABILITY