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 v7 00/15] Add param Error ** for msi_init()
Date: Wed, 8 Jun 2016 18:15:20 +0800 [thread overview]
Message-ID: <5757F038.4090702@cn.fujitsu.com> (raw)
In-Reply-To: <1465200062-13824-1-git-send-email-caoj.fnst@cn.fujitsu.com>
ping~
On 06/06/2016 04:00 PM, Cao jin wrote:
> v7 changelog:
> 1. 4 new patches, patch 11, 13, 14, 15. previous patch 11 numbered 12 now.
> 2. patch 2: remove comment of "errp", add it in patch 12
> 3. patch 4: fix commit message as sugguestion
> 4. replace all "msi == ON_OFF_AUTO_ON || msi == ON_OFF_AUTO_AUTO" to
> "msi != ON_OFF_AUTO_OFF", before patch 12
> 5. patch 7: correct a error in intel_hda_update_irq(), and change the
> variant type from int to bool
> 6. patch 13: fix the issue that code would overwrite user configuration.
> patch 14&15 actually almost the same with 13, remove unnecessary flag.
> 7. patch 12 use tightened error checking as suggestions, but not sure
> megasas/mptsas is modified as sugguestion perfectly, RFC.
>
> 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 (15):
> pci core: assert ENOSPC when add capability
> fix some coding style problems
> change pvscsi_init_msi() type to void
> megasas: Fix check for msi_init() failure
> 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
> msi_init: change return value to 0 on success
> pci: Convert msi_init() to Error and fix callers to check it
> megasas: remove unnecessary megasas_use_msi()
> mptsas: remove unnecessary internal msi state flag
> vmw_pvscsi: remove unnecessary internal msi state flag
>
> hw/audio/intel-hda.c | 30 ++++++++++++++++----
> hw/ide/ich.c | 15 ++++++----
> hw/net/vmxnet3.c | 40 +++++++++-----------------
> hw/pci-bridge/ioh3420.c | 13 +++++++--
> hw/pci-bridge/pci_bridge_dev.c | 35 +++++++++++++++++------
> hw/pci-bridge/xio3130_downstream.c | 12 ++++++--
> hw/pci-bridge/xio3130_upstream.c | 9 +++++-
> hw/pci/msi.c | 27 ++++++++++++++++--
> hw/pci/pci.c | 6 ++--
> hw/scsi/megasas.c | 58 ++++++++++++++++++++------------------
> hw/scsi/mptsas.c | 40 +++++++++++++++++---------
> hw/scsi/mptsas.h | 5 ++--
> hw/scsi/vmw_pvscsi.c | 22 +++++----------
> hw/usb/hcd-xhci.c | 35 +++++++++++++++++------
> hw/vfio/pci.c | 7 +++--
> include/hw/pci/msi.h | 3 +-
> 16 files changed, 226 insertions(+), 131 deletions(-)
>
--
Yours Sincerely,
Cao jin
next prev parent reply other threads:[~2016-06-08 10:10 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-06 8:00 [Qemu-devel] [PATCH v7 00/15] Add param Error ** for msi_init() Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 01/15] pci core: assert ENOSPC when add capability Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 02/15] fix some coding style problems Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 03/15] change pvscsi_init_msi() type to void Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 04/15] megasas: Fix check for msi_init() failure Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 05/15] mptsas: change .realize function name Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 06/15] usb xhci: change msi/msix property type Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 07/15] intel-hda: change msi " Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 08/15] mptsas: " Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 09/15] megasas: change msi/msix " Cao jin
2016-06-06 8:27 ` Hannes Reinecke
2016-06-06 8:43 ` Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 10/15] pci bridge dev: change msi " Cao jin
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 11/15] msi_init: change return value to 0 on success Cao jin
2016-06-06 8:28 ` Hannes Reinecke
2016-06-06 9:19 ` Cao jin
2016-06-09 15:32 ` Markus Armbruster
2016-06-06 8:00 ` [Qemu-devel] [PATCH v7 12/15] pci: Convert msi_init() to Error and fix callers to check it Cao jin
2016-06-06 8:29 ` Hannes Reinecke
2016-06-06 8:30 ` Cao jin
2016-06-09 15:53 ` Markus Armbruster
2016-06-09 15:54 ` Markus Armbruster
2016-06-06 8:01 ` [Qemu-devel] [PATCH v7 13/15] megasas: remove unnecessary megasas_use_msi() Cao jin
2016-06-06 8:31 ` Hannes Reinecke
2016-06-06 8:01 ` [Qemu-devel] [PATCH v7 14/15] mptsas: remove unnecessary internal msi state flag Cao jin
2016-06-06 8:01 ` [Qemu-devel] [PATCH v7 15/15] vmw_pvscsi: " Cao jin
2016-06-09 15:48 ` Markus Armbruster
2016-06-08 10:15 ` Cao jin [this message]
2016-06-09 15:58 ` [Qemu-devel] [PATCH v7 00/15] Add param Error ** for msi_init() Markus Armbruster
2016-06-10 7:34 ` 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=5757F038.4090702@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).