qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v6 00/11] Add param Error ** for msi_init()
@ 2016-05-24  4:04 Cao jin
  2016-05-24  4:04 ` [Qemu-devel] [PATCH v6 01/11] pci core: assert ENOSPC when add capability Cao jin
                   ` (12 more replies)
  0 siblings, 13 replies; 28+ messages in thread
From: Cao jin @ 2016-05-24  4:04 UTC (permalink / raw)
  To: qemu-devel
  Cc: Gerd Hoffmann, John Snow, Dmitry Fleytman, Jason Wang,
	Michael S. Tsirkin, Hannes Reinecke, Paolo Bonzini,
	Alex Williamson, Markus Armbruster, Marcel Apfelbaum

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(-)

-- 
2.1.0

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2016-06-03 11:30 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [Qemu-devel] [PATCH v6 00/11] Add param Error ** for msi_init() Cao jin
2016-06-01  6:59 ` Cao jin

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).