From: Paolo Bonzini Date: Thu, 10 Sep 2015 09:31:12 +0000 (+0200) Subject: pci: remove Link Training error from AER error list X-Git-Tag: TizenStudio_2.0_p2.3.2~120^2~1^2~184^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84090bbce91a386ae6e5f61b26f36783196712d2;p=sdk%2Femulator%2Fqemu.git pci: remove Link Training error from AER error list The spec says: Undefined – The value read from this bit is undefined. In previous versions of this specification, this bit was used to indicate a Link Training Error. System software must ignore the value read from this bit. System software is permitted to write any value to this bit. Do not allow injecting it. Suggested-by: Michael S. Tsirkin Reviewed-by: Michael S. Tsirkin Signed-off-by: Paolo Bonzini --- diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c index f1847ac..46e0ad8 100644 --- a/hw/pci/pcie_aer.c +++ b/hw/pci/pcie_aer.c @@ -827,10 +827,6 @@ typedef struct PCIEAERErrorName { */ static const struct PCIEAERErrorName pcie_aer_error_list[] = { { - .name = "TRAIN", - .val = PCI_ERR_UNC_TRAIN, - .correctable = false, - }, { .name = "DLP", .val = PCI_ERR_UNC_DLP, .correctable = false,