All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: jbarnes@virtuousgeek.org, linux-kernel@vger.kernel.org,
	linux-pci@vger.kernel.org, Matthew Wilcox <willy@linux.intel.com>
Cc: virtualization@lists.linux-foundation.org, kvm@vger.kernel.org
Subject: [PATCH] msi-x: let drivers retry when not enough vectors
Date: Thu, 7 May 2009 11:28:41 +0300	[thread overview]
Message-ID: <20090507082841.GA31751@redhat.com> (raw)

pci_enable_msix currently returns -EINVAL if you ask
for more vectors than supported by the device, which would
typically cause fallback to regular interrupts.

It's better to return the table size, making the driver retry
MSI-X with less vectors.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---

Hi Jesse,
This came up when I was adding MSI-X support to virtio pci driver,
which does not know the exact table size upfront.
Could you consider this patch for 2.6.31 please?


 drivers/pci/msi.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
index 6f2e629..f5bd1c9 100644
--- a/drivers/pci/msi.c
+++ b/drivers/pci/msi.c
@@ -687,8 +687,8 @@ int pci_msix_table_size(struct pci_dev *dev)
  * indicates the successful configuration of MSI-X capability structure
  * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
  * Or a return of > 0 indicates that driver request is exceeding the number
- * of irqs available. Driver should use the returned value to re-send
- * its request.
+ * of irqs or MSI-X vectors available. Driver should use the returned value to
+ * re-send its request.
  **/
 int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
 {
@@ -704,7 +704,7 @@ int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
 
 	nr_entries = pci_msix_table_size(dev);
 	if (nvec > nr_entries)
-		return -EINVAL;
+		return nr_entries;
 
 	/* Check for any invalid entries */
 	for (i = 0; i < nvec; i++) {
-- 
1.6.3.rc3.1.g830204

             reply	other threads:[~2009-05-07  8:31 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-07  8:28 Michael S. Tsirkin [this message]
2009-05-07  8:51 ` [PATCH] msi-x: let drivers retry when not enough vectors Sheng Yang
2009-05-07  9:05   ` Michael S. Tsirkin
2009-05-07  9:10     ` Sheng Yang
2009-05-07  9:10     ` Sheng Yang
2009-05-07  9:31       ` Michael S. Tsirkin
2009-05-07  9:31         ` Michael S. Tsirkin
2009-05-07  9:05   ` Michael S. Tsirkin
2009-05-07  9:27   ` Matthew Wilcox
2009-05-07  9:27   ` Matthew Wilcox
2009-05-07  9:40     ` Sheng Yang
2009-05-07  9:40     ` Sheng Yang
2009-05-07  9:53       ` Matthew Wilcox
2009-05-07  9:53       ` Matthew Wilcox
2009-05-07 10:19         ` Sheng Yang
2009-05-07 10:32           ` Michael S. Tsirkin
2009-05-07 10:32             ` Michael S. Tsirkin
2009-05-07 23:55           ` Rusty Russell
2009-05-07 23:55           ` Rusty Russell
2009-05-08  0:22             ` Matthew Wilcox
2009-05-08  0:22             ` Matthew Wilcox
2009-05-08  0:28             ` Michael Ellerman
2009-05-08  0:28               ` Michael Ellerman
2009-05-12 21:28             ` Michael S. Tsirkin
2009-05-12 21:28             ` Michael S. Tsirkin
2009-05-07 10:19         ` Sheng Yang
2009-05-07 10:23         ` Michael Ellerman
2009-05-07 10:23         ` Michael Ellerman
2009-05-07 10:28           ` Sheng Yang
2009-05-07 10:28           ` Sheng Yang
2009-05-07 10:44           ` Avi Kivity
2009-05-07 10:44           ` Avi Kivity
2009-05-07 11:57             ` Matthew Wilcox
2009-05-07 11:57             ` Matthew Wilcox
2009-05-07  8:51 ` Sheng Yang
2009-06-11 18:28 ` Jesse Barnes
2009-06-11 18:28 ` Jesse Barnes
2009-05-07  8:28 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=20090507082841.GA31751@redhat.com \
    --to=mst@redhat.com \
    --cc=jbarnes@virtuousgeek.org \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=willy@linux.intel.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 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.