From: Jan Kiszka <jan.kiszka@siemens.com>
To: Avi Kivity <avi@redhat.com>, Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm <kvm@vger.kernel.org>, "Michael S. Tsirkin" <mst@redhat.com>
Subject: [PATCH] qemu-kvm: Do not advertise MSI caps on lacking KVM support
Date: Fri, 29 Apr 2011 13:24:49 +0200 [thread overview]
Message-ID: <4DBAA001.3000905@siemens.com> (raw)
As suggested by Michael Tsirkin: Move the check for GSI routing from
kvm_msi_message_add to the MSI/MSI-X initalization. If it fails (and KVM
is in in-kernel irqchip mode), do not advertise MSI at all.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
hw/msi.c | 4 ++++
hw/msix.c | 4 +++-
qemu-kvm.c | 4 ----
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/hw/msi.c b/hw/msi.c
index 725b2b7..ddcfedd 100644
--- a/hw/msi.c
+++ b/hw/msi.c
@@ -208,6 +208,10 @@ int msi_init(struct PCIDevice *dev, uint8_t offset,
" 64bit %d mask %d\n",
offset, nr_vectors, msi64bit, msi_per_vector_mask);
+ if (kvm_enabled() && kvm_irqchip_in_kernel() && !kvm_has_gsi_routing()) {
+ return -ENOTSUP;
+ }
+
assert(!(nr_vectors & (nr_vectors - 1))); /* power of 2 */
assert(nr_vectors > 0);
assert(nr_vectors <= PCI_MSI_VECTORS_MAX);
diff --git a/hw/msix.c b/hw/msix.c
index 9cee086..d371940 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -350,8 +350,10 @@ int msix_init(struct PCIDevice *dev, unsigned short nentries,
{
int ret;
/* Nothing to do if MSI is not supported by interrupt controller */
- if (!msix_supported)
+ if (!msix_supported ||
+ (kvm_enabled() && kvm_irqchip_in_kernel() && !kvm_has_gsi_routing())) {
return -ENOTSUP;
+ }
if (nentries > MSIX_MAX_ENTRIES)
return -EINVAL;
diff --git a/qemu-kvm.c b/qemu-kvm.c
index e8c2009..b951146 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -986,10 +986,6 @@ int kvm_msi_message_add(KVMMsiMessage *msg)
struct kvm_irq_routing_entry e;
int ret;
- if (!kvm_has_gsi_routing()) {
- return -EOPNOTSUPP;
- }
-
ret = kvm_get_irq_route_gsi();
if (ret < 0) {
return ret;
--
1.7.1
next reply other threads:[~2011-04-29 11:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-29 11:24 Jan Kiszka [this message]
2011-05-03 19:18 ` [PATCH] qemu-kvm: Do not advertise MSI caps on lacking KVM support Marcelo Tosatti
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=4DBAA001.3000905@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=mtosatti@redhat.com \
/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).