From: Cao jin <caoj.fnst@cn.fujitsu.com>
To: qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Marcel Apfelbaum <marcel@redhat.com>,
Alex Williamson <alex.williamson@redhat.com>,
Hannes Reinecke <hare@suse.de>,
Dmitry Fleytman <dmitry@daynix.com>,
Paolo Bonzini <pbonzini@redhat.com>, John Snow <jsnow@redhat.com>,
Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v6 00/11] Add param Error ** for msi_init()
Date: Wed, 1 Jun 2016 11:06:17 +0800 [thread overview]
Message-ID: <574E5129.7050909@cn.fujitsu.com> (raw)
In-Reply-To: <1464062689-32156-1-git-send-email-caoj.fnst@cn.fujitsu.com>
ping?
On 05/24/2016 12:04 PM, Cao jin wrote:
> v6 changelog:
> 1. make "assert ENOSPC" the 1st one in the series, and remove ENOSPC line
> of comments of msi_init(). also fix to other minor comments.
> 2. Because semantics changes, add hint message for devices who have msi/msix
> property, to help old machine user to know what should do
> 3. update pci_bridge_dev hehaviour, because it has non-msi variant, but it can
> never fall back to INTx before the patch. make it behaviour like others
> 4. mptsas: forget to assign s->msi_in_use before, now make it.
>
> About test: Only compiled every patch.
>
> cc: Gerd Hoffmann <kraxel@redhat.com>
> cc: John Snow <jsnow@redhat.com>
> cc: Dmitry Fleytman <dmitry@daynix.com>
> cc: Jason Wang <jasowang@redhat.com>
> cc: Michael S. Tsirkin <mst@redhat.com>
> cc: Hannes Reinecke <hare@suse.de>
> cc: Paolo Bonzini <pbonzini@redhat.com>
> cc: Alex Williamson <alex.williamson@redhat.com>
> cc: Markus Armbruster <armbru@redhat.com>
> cc: Marcel Apfelbaum <marcel@redhat.com>
>
> Cao jin (11):
> pci core: assert ENOSPC when add capability
> fix some coding style problems
> change pvscsi_init_msi() type to void
> megasas: Fix
> mptsas: change .realize function name
> usb xhci: change msi/msix property type
> intel-hda: change msi property type
> mptsas: change msi property type
> megasas: change msi/msix property type
> pci bridge dev: change msi property type
> pci: Convert msi_init() to Error and fix callers to check it
>
> hw/audio/intel-hda.c | 23 ++++++++++++++----
> hw/ide/ich.c | 17 +++++++++-----
> hw/net/vmxnet3.c | 44 ++++++++++++++--------------------
> hw/pci-bridge/ioh3420.c | 12 ++++++++--
> hw/pci-bridge/pci_bridge_dev.c | 31 +++++++++++++++++-------
> hw/pci-bridge/xio3130_downstream.c | 11 +++++++--
> hw/pci-bridge/xio3130_upstream.c | 8 ++++++-
> hw/pci/msi.c | 25 ++++++++++++++++++--
> hw/pci/pci.c | 6 ++---
> hw/scsi/megasas.c | 48 +++++++++++++++++++++-----------------
> hw/scsi/mptsas.c | 32 ++++++++++++++++++-------
> hw/scsi/mptsas.h | 3 ++-
> hw/scsi/vmw_pvscsi.c | 10 ++++----
> hw/usb/hcd-xhci.c | 33 +++++++++++++++++++-------
> hw/vfio/pci.c | 7 ++++--
> include/hw/pci/msi.h | 3 ++-
> 16 files changed, 209 insertions(+), 104 deletions(-)
>
--
Yours Sincerely,
Cao jin
next prev parent reply other threads:[~2016-06-01 3:01 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-24 4:04 [Qemu-devel] [PATCH v6 00/11] Add param Error ** for msi_init() Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 01/11] pci core: assert ENOSPC when add capability Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 02/11] fix some coding style problems Cao jin
2016-06-01 8:09 ` Markus Armbruster
2016-06-01 8:33 ` Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 03/11] change pvscsi_init_msi() type to void Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 04/11] megasas: Fix Cao jin
2016-06-01 8:10 ` Markus Armbruster
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 05/11] mptsas: change .realize function name Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 06/11] usb xhci: change msi/msix property type Cao jin
2016-06-01 8:25 ` Markus Armbruster
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 07/11] intel-hda: change msi " Cao jin
2016-06-01 8:39 ` Markus Armbruster
2016-06-02 8:42 ` Cao jin
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 08/11] mptsas: " Cao jin
2016-06-01 8:43 ` Markus Armbruster
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 09/11] megasas: change msi/msix " Cao jin
2016-06-01 9:14 ` Markus Armbruster
2016-06-02 10:15 ` Cao jin
2016-06-02 13:59 ` Markus Armbruster
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 10/11] pci bridge dev: change msi " Cao jin
2016-06-01 9:17 ` Markus Armbruster
2016-05-24 4:04 ` [Qemu-devel] [PATCH v6 11/11] pci: Convert msi_init() to Error and fix callers to check it Cao jin
2016-06-01 12:37 ` Markus Armbruster
2016-06-03 8:28 ` Cao jin
2016-06-03 11:30 ` Markus Armbruster
2016-06-01 3:06 ` Cao jin [this message]
2016-06-01 6:59 ` [Qemu-devel] [PATCH v6 00/11] Add param Error ** for msi_init() Cao jin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=574E5129.7050909@cn.fujitsu.com \
--to=caoj.fnst@cn.fujitsu.com \
--cc=alex.williamson@redhat.com \
--cc=armbru@redhat.com \
--cc=dmitry@daynix.com \
--cc=hare@suse.de \
--cc=jasowang@redhat.com \
--cc=jsnow@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcel@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.