From: peter.crosthwaite@xilinx.com
To: qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, aliguori@us.ibm.com, afaerber@suse.de
Subject: [Qemu-devel] [RFT PATCH v1 00/30] PCI: Cleanup legacy casts in device land
Date: Tue, 11 Jun 2013 16:40:00 +1000 [thread overview]
Message-ID: <cover.1370931825.git.peter.crosthwaite@xilinx.com> (raw)
From: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
There are a number of different cast implementations from various
stages of QEMU development out in device model land. This series cleans
up the ones involving TYPE_PCI_DEVICE to consistently use proper QOM
casts for both up and down casts.
Some were easy, some needed QOM cast macros which are added as
appropriate.
Following the recent discussion RE performance consequences of QOM
casts, im interested in any reports of possible performance regressions
here, although I am hoping that Anthony current efforts to improve
QOM casting efficiency make this a non-issue.
Peter Crosthwaite (30):
net/e1000: QOM Upcast Sweep
net/rtl8139: QOM Upcast Sweep
net/pcnet-pci: QOM Upcast Sweep
usb/hcd-xhci: QOM Upcast Sweep
scsi/lsi53c895a: QOM Upcast Sweep
scsi/megasas: QOM Upcast Sweep
scsi/esp-pci: QOM Upcast Sweep
ide/ich: QOM Upcast Sweep
ide/piix: QOM casting sweep
acpi/piix4: QOM Upcast Sweep
misc/pci-testdev: QOM Upcast Sweep
virtio/virtio-pci: QOM casting sweep
virtio/vmware_vga: QOM casting sweep
misc/ivshmem: QOM Upcast Sweep
xen/xen_platform: QOM casting sweep
isa/*: QOM casting sweep
pci/*: QOM casting sweep
pci-bridge/pci_bridge_dev: Don't use DO_UPCAST
pci-bridge/*: substitute ->qdev casts with DEVICE()
misc/vfio: substitute ->qdev casts with DEVICE()
net/eepro100: substitute ->qdev casts with DEVICE()
net/ne2000: substitute ->qdev casts with DEVICE()
usb/*: substitute ->qdev casts with DEVICE()
watchdog/wdt_i6300esb: substitute ->qdev casts with DEVICE()
scsi/vmw_pvscsi: substitute ->qdev casts with DEVICE()
i2c/smbus_ich9: substitute ->qdev casts with DEVICE()
ide/cmd646: substitute ->qdev casts with DEVICE()
ide/via: substitute ->qdev casts with DEVICE()
pci-host/*: substitute ->qdev casts with DEVICE()
i386/*: substitute ->qdev casts with DEVICE()
hw/acpi/piix4.c | 31 +++++++++++++++++--------------
hw/display/vmware_vga.c | 13 ++++++++-----
hw/i2c/smbus_ich9.c | 2 +-
hw/i386/kvm/pci-assign.c | 21 ++++++++++++---------
hw/i386/pc.c | 4 ++--
hw/i386/pc_piix.c | 4 ++--
hw/i386/pc_q35.c | 4 ++--
hw/ide/ahci.h | 5 +++++
hw/ide/cmd646.c | 8 ++++----
hw/ide/ich.c | 10 +++++-----
hw/ide/piix.c | 8 ++++----
hw/ide/via.c | 4 ++--
hw/isa/i82378.c | 8 ++++----
hw/isa/lpc_ich9.c | 6 +++---
hw/isa/piix4.c | 4 ++--
hw/isa/vt82c686.c | 14 +++++++-------
hw/misc/ivshmem.c | 18 +++++++++++-------
hw/misc/pci-testdev.c | 11 ++++++++---
hw/misc/vfio.c | 4 ++--
hw/net/e1000.c | 20 +++++++++++++-------
hw/net/eepro100.c | 14 ++++++++------
hw/net/ne2000.c | 6 ++++--
hw/net/pcnet-pci.c | 14 +++++++++-----
hw/net/rtl8139.c | 26 ++++++++++++++++++--------
hw/pci-bridge/dec.c | 2 +-
hw/pci-bridge/i82801b11.c | 2 +-
hw/pci-bridge/ioh3420.c | 2 +-
hw/pci-bridge/pci_bridge_dev.c | 2 +-
hw/pci-bridge/xio3130_downstream.c | 2 +-
hw/pci-bridge/xio3130_upstream.c | 2 +-
hw/pci-host/apb.c | 4 ++--
hw/pci-host/q35.c | 4 ++--
hw/pci/pci-hotplug.c | 18 ++++++++++--------
hw/pci/pci.c | 17 +++++++++--------
hw/pci/pci_bridge.c | 7 ++++---
hw/pci/pcie.c | 4 ++--
hw/pci/shpc.c | 8 ++++----
hw/scsi/esp-pci.c | 14 +++++++++-----
hw/scsi/lsi53c895a.c | 26 ++++++++++++++++----------
hw/scsi/megasas.c | 17 +++++++++++------
hw/scsi/vmw_pvscsi.c | 2 +-
hw/usb/hcd-ehci-pci.c | 13 ++++++++-----
hw/usb/hcd-ohci.c | 2 +-
hw/usb/hcd-uhci.c | 2 +-
hw/usb/hcd-xhci.c | 19 +++++++++++++------
hw/virtio/virtio-pci.c | 4 ++--
hw/watchdog/wdt_i6300esb.c | 2 +-
hw/xen/xen_platform.c | 28 ++++++++++++++++------------
48 files changed, 271 insertions(+), 191 deletions(-)
--
1.8.3.rc1.44.gb387c77.dirty
next reply other threads:[~2013-06-11 6:45 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-11 6:40 peter.crosthwaite [this message]
2013-06-11 6:40 ` [Qemu-devel] [RFT PATCH v1 01/30] net/e1000: QOM Upcast Sweep peter.crosthwaite
2013-06-24 3:42 ` Peter Crosthwaite
2013-06-11 6:41 ` [Qemu-devel] [RFT PATCH v1 02/30] net/rtl8139: " peter.crosthwaite
2013-06-11 6:42 ` [Qemu-devel] [RFT PATCH v1 03/30] net/pcnet-pci: " peter.crosthwaite
2013-06-11 6:43 ` [Qemu-devel] [RFT PATCH v1 04/30] usb/hcd-xhci: " peter.crosthwaite
2013-06-11 6:43 ` [Qemu-devel] [RFT PATCH v1 05/30] scsi/lsi53c895a: " peter.crosthwaite
2013-06-11 6:44 ` [Qemu-devel] [RFT PATCH v1 06/30] scsi/megasas: " peter.crosthwaite
2013-06-24 3:42 ` Peter Crosthwaite
2013-06-11 6:45 ` [Qemu-devel] [RFT PATCH v1 07/30] scsi/esp-pci: " peter.crosthwaite
2013-06-11 6:46 ` [Qemu-devel] [RFT PATCH v1 08/30] ide/ich: " peter.crosthwaite
2013-06-11 6:46 ` [Qemu-devel] [RFT PATCH v1 09/30] ide/piix: QOM casting sweep peter.crosthwaite
2013-06-11 6:47 ` [Qemu-devel] [RFT PATCH v1 10/30] acpi/piix4: QOM Upcast Sweep peter.crosthwaite
2013-06-11 6:48 ` [Qemu-devel] [RFT PATCH v1 11/30] misc/pci-testdev: " peter.crosthwaite
2013-06-11 6:49 ` [Qemu-devel] [RFT PATCH v1 12/30] virtio/virtio-pci: QOM casting sweep peter.crosthwaite
2013-06-11 7:09 ` Frederic Konrad
2013-06-24 5:00 ` Peter Crosthwaite
2013-06-11 6:49 ` [Qemu-devel] [RFT PATCH v1 13/30] virtio/vmware_vga: " peter.crosthwaite
2013-06-11 6:50 ` [Qemu-devel] [RFT PATCH v1 14/30] misc/ivshmem: QOM Upcast Sweep peter.crosthwaite
2013-06-11 6:51 ` [Qemu-devel] [RFT PATCH v1 15/30] xen/xen_platform: QOM casting sweep peter.crosthwaite
2013-06-11 6:52 ` [Qemu-devel] [RFT PATCH v1 16/30] isa/*: " peter.crosthwaite
2013-06-11 9:58 ` Andreas Färber
2013-06-24 4:55 ` Peter Crosthwaite
2013-06-11 6:52 ` [Qemu-devel] [RFT PATCH v1 17/30] pci/*: " peter.crosthwaite
2013-06-11 6:53 ` [Qemu-devel] [RFT PATCH v1 18/30] pci-bridge/pci_bridge_dev: Don't use DO_UPCAST peter.crosthwaite
2013-06-11 6:54 ` [Qemu-devel] [RFT PATCH v1 19/30] pci-bridge/*: substitute ->qdev casts with DEVICE() peter.crosthwaite
2013-06-11 6:55 ` [Qemu-devel] [RFT PATCH v1 20/30] misc/vfio: " peter.crosthwaite
2013-06-11 6:55 ` [Qemu-devel] [RFT PATCH v1 21/30] net/eepro100: " peter.crosthwaite
2013-06-11 6:56 ` [Qemu-devel] [RFT PATCH v1 22/30] net/ne2000: " peter.crosthwaite
2013-06-11 6:57 ` [Qemu-devel] [RFT PATCH v1 23/30] usb/*: " peter.crosthwaite
2013-06-11 6:58 ` [Qemu-devel] [RFT PATCH v1 24/30] watchdog/wdt_i6300esb: " peter.crosthwaite
2013-06-11 6:58 ` [Qemu-devel] [RFT PATCH v1 25/30] scsi/vmw_pvscsi: " peter.crosthwaite
2013-06-11 6:59 ` [Qemu-devel] [RFT PATCH v1 26/30] i2c/smbus_ich9: " peter.crosthwaite
2013-06-11 7:00 ` [Qemu-devel] [RFT PATCH v1 27/30] ide/cmd646: " peter.crosthwaite
2013-06-11 7:01 ` [Qemu-devel] [RFT PATCH v1 28/30] ide/via: " peter.crosthwaite
2013-06-11 7:01 ` [Qemu-devel] [RFT PATCH v1 29/30] pci-host/*: " peter.crosthwaite
2013-06-11 7:02 ` [Qemu-devel] [RFT PATCH v1 30/30] i386/*: " peter.crosthwaite
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=cover.1370931825.git.peter.crosthwaite@xilinx.com \
--to=peter.crosthwaite@xilinx.com \
--cc=afaerber@suse.de \
--cc=aliguori@us.ibm.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).