From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paul Brook <paul@codesourcery.com>, Avi Kivity <avi@redhat.com>,
qemu-devel@nongnu.org, Carsten Otte <cotte@de.ibm.com>,
kvm@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
vi
Subject: [PATCHv4 00/13] qemu: MSI-X support
Date: Wed, 10 Jun 2009 15:27:54 +0300 [thread overview]
Message-ID: <20090610122754.GA27174@redhat.com> (raw)
Here is the port of MSI-X support patches to upstream qemu.
Please comment or commit.
This patchset adds generic support for MSI-X, adds implementation in
APIC, and uses MSI-X in virtio-net.
Changelog:
- since v3
call to resize_region on load
split patches a bit differently to address style comments by Glauber
update commit message to clarify what msix_support flag does
- since v2
rename mask -> wmask to avoid conflict with work by Yamahata
- since v1
At Paul's suggestion, use stl_phy to decouple APIC and MSI-X implementation
This uses the mask table patch that I posted previously, and which is
included in the series.
--
MST
Michael S. Tsirkin (13):
qemu: make default_write_config use mask table
qemu: capability bits in pci save/restore
qemu: add routines to manage PCI capabilities
qemu: helper routines for pci access
qemu: MSI-X support functions
qemu: add flag to disable MSI-X by default
qemu: minimal MSI/MSI-X implementation for PC
qemu: add support for resizing regions
qemu: virtio support for many interrupt vectors
qemu: MSI-X support in virtio PCI
qemu: request 3 vectors in virtio-net
qemu: virtio save/load bindings
qemu: add pci_get/set_byte
Makefile.target | 2 +-
hw/apic.c | 43 +++++-
hw/msix.c | 420 ++++++++++++++++++++++++++++++++++++++++++++++++++++
hw/msix.h | 35 +++++
hw/pci.c | 295 ++++++++++++++++++++-----------------
hw/pci.h | 105 +++++++++++++-
hw/syborg_virtio.c | 13 ++-
hw/virtio-net.c | 1 +
hw/virtio-pci.c | 216 ++++++++++++++++++++++-----
hw/virtio.c | 70 ++++++---
hw/virtio.h | 14 ++-
qemu-options.hx | 2 +
vl.c | 3 +
13 files changed, 1005 insertions(+), 214 deletions(-)
create mode 100644 hw/msix.c
create mode 100644 hw/msix.h
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paul Brook <paul@codesourcery.com>, Avi Kivity <avi@redhat.com>,
qemu-devel@nongnu.org, Carsten Otte <cotte@de.ibm.com>,
kvm@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
virtualization@lists.linux-foundation.org,
Christian Borntraeger <borntraeger@de.ibm.com>,
Blue Swirl <blauwirbel@gmail.com>,
Anthony Liguori <anthony@codemonkey.ws>,
Glauber Costa <glommer@redhat.com>
Subject: [Qemu-devel] [PATCHv4 00/13] qemu: MSI-X support
Date: Wed, 10 Jun 2009 15:27:54 +0300 [thread overview]
Message-ID: <20090610122754.GA27174@redhat.com> (raw)
Here is the port of MSI-X support patches to upstream qemu.
Please comment or commit.
This patchset adds generic support for MSI-X, adds implementation in
APIC, and uses MSI-X in virtio-net.
Changelog:
- since v3
call to resize_region on load
split patches a bit differently to address style comments by Glauber
update commit message to clarify what msix_support flag does
- since v2
rename mask -> wmask to avoid conflict with work by Yamahata
- since v1
At Paul's suggestion, use stl_phy to decouple APIC and MSI-X implementation
This uses the mask table patch that I posted previously, and which is
included in the series.
--
MST
Michael S. Tsirkin (13):
qemu: make default_write_config use mask table
qemu: capability bits in pci save/restore
qemu: add routines to manage PCI capabilities
qemu: helper routines for pci access
qemu: MSI-X support functions
qemu: add flag to disable MSI-X by default
qemu: minimal MSI/MSI-X implementation for PC
qemu: add support for resizing regions
qemu: virtio support for many interrupt vectors
qemu: MSI-X support in virtio PCI
qemu: request 3 vectors in virtio-net
qemu: virtio save/load bindings
qemu: add pci_get/set_byte
Makefile.target | 2 +-
hw/apic.c | 43 +++++-
hw/msix.c | 420 ++++++++++++++++++++++++++++++++++++++++++++++++++++
hw/msix.h | 35 +++++
hw/pci.c | 295 ++++++++++++++++++++-----------------
hw/pci.h | 105 +++++++++++++-
hw/syborg_virtio.c | 13 ++-
hw/virtio-net.c | 1 +
hw/virtio-pci.c | 216 ++++++++++++++++++++++-----
hw/virtio.c | 70 ++++++---
hw/virtio.h | 14 ++-
qemu-options.hx | 2 +
vl.c | 3 +
13 files changed, 1005 insertions(+), 214 deletions(-)
create mode 100644 hw/msix.c
create mode 100644 hw/msix.h
next reply other threads:[~2009-06-10 12:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-10 12:27 Michael S. Tsirkin [this message]
2009-06-10 12:27 ` [Qemu-devel] [PATCHv4 00/13] qemu: MSI-X support Michael S. Tsirkin
-- strict thread matches above, loose matches on Subject: below --
2009-06-10 12:27 Michael S. Tsirkin
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=20090610122754.GA27174@redhat.com \
--to=mst@redhat.com \
--cc=avi@redhat.com \
--cc=cotte@de.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=paul@codesourcery.com \
--cc=qemu-devel@nongnu.org \
--cc=rusty@rustcorp.com.au \
/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.