From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54194) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZwKp-0005GA-Rf for qemu-devel@nongnu.org; Thu, 10 Sep 2015 03:31:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZwKl-00012b-J6 for qemu-devel@nongnu.org; Thu, 10 Sep 2015 03:31:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZwKl-000126-Dz for qemu-devel@nongnu.org; Thu, 10 Sep 2015 03:31:51 -0400 Date: Thu, 10 Sep 2015 10:31:47 +0300 From: "Michael S. Tsirkin" Message-ID: <20150910102659-mutt-send-email-mst@redhat.com> References: <1441816441-7730-1-git-send-email-pbonzini@redhat.com> <1441816441-7730-2-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1441816441-7730-2-git-send-email-pbonzini@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 1/2] update Linux headers to 4.2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: cornelia.huck@de.ibm.com, den@openvz.org, qemu-devel@nongnu.org On Wed, Sep 09, 2015 at 06:34:00PM +0200, Paolo Bonzini wrote: > Signed-off-by: Paolo Bonzini > --- > hw/pci/pcie_aer.c | 4 +- > include/standard-headers/linux/pci_regs.h | 381 +++++++++++++++++++= +------- > include/standard-headers/linux/virtio_ring.h | 3 +- > linux-headers/asm-x86/hyperv.h | 2 + > linux-headers/asm-x86/kvm.h | 4 +- > scripts/update-linux-headers.sh | 1 + > 6 files changed, 294 insertions(+), 101 deletions(-) >=20 > diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c > index f1847ac..8e4bd56 100644 > --- a/hw/pci/pcie_aer.c > +++ b/hw/pci/pcie_aer.c > @@ -827,8 +827,8 @@ typedef struct PCIEAERErrorName { > */ > static const struct PCIEAERErrorName pcie_aer_error_list[] =3D { > { > - .name =3D "TRAIN", > - .val =3D PCI_ERR_UNC_TRAIN, > + .name =3D "UND", > + .val =3D PCI_ERR_UNC_UND, > .correctable =3D false, > }, { > .name =3D "DLP", I think we should drop this entry. The spec says: Undefined =E2=80=93 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. In other words, this bit should be ignored. --=20 MST