From: Clemens Ladisch <clemens@ladisch.de>
To: Neela Syam Kolli <megaraidlinux@lsi.com>
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH] megaraid_sas: enable message-signaled interrupts
Date: Mon, 07 Jun 2010 09:36:16 +0200 [thread overview]
Message-ID: <4C0CA170.70003@ladisch.de> (raw)
To avoid sharing interrupts, enable message-signaled interrupts, if
possible.
Tested with LSI 9260-8i/8e, where sharing the interrupt with the nvidia
driver would reduce the RAID performance.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Tested-by: Bert dd <bert.ddecker@gmail.com>
---
drivers/scsi/megaraid/megaraid_sas.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
--- a/drivers/scsi/megaraid/megaraid_sas.c
+++ b/drivers/scsi/megaraid/megaraid_sas.c
@@ -3169,10 +3169,14 @@ megasas_probe_one(struct pci_dev *pdev,
if (megasas_init_mfi(instance))
goto fail_init_mfi;
+ pci_enable_msi(pdev);
+
/*
* Register IRQ
*/
- if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED, "megasas", instance)) {
+ if (request_irq(pdev->irq, megasas_isr,
+ pci_dev_msi_enabled(pdev) ? 0 : IRQF_SHARED,
+ "megasas", instance)) {
printk(KERN_DEBUG "megasas: Failed to register IRQ\n");
goto fail_irq;
}
@@ -3222,6 +3226,8 @@ megasas_probe_one(struct pci_dev *pdev,
megasas_release_mfi(instance);
fail_irq:
+ pci_disable_msi(pdev);
+
fail_init_mfi:
fail_alloc_dma_buf:
if (instance->evt_detail)
@@ -3354,6 +3360,7 @@ megasas_suspend(struct pci_dev *pdev, pm
pci_set_drvdata(instance->pdev, instance);
instance->instancet->disable_intr(instance->reg_set);
free_irq(instance->pdev->irq, instance);
+ pci_disable_msi(pdev);
pci_save_state(pdev);
pci_disable_device(pdev);
@@ -3416,10 +3423,13 @@ megasas_resume(struct pci_dev *pdev)
tasklet_init(&instance->isr_tasklet, megasas_complete_cmd_dpc,
(unsigned long)instance);
+ pci_enable_msi(pdev);
+
/*
* Register IRQ
*/
- if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED,
+ if (request_irq(pdev->irq, megasas_isr,
+ pci_dev_msi_enabled(pdev) ? 0 : IRQF_SHARED,
"megasas", instance)) {
printk(KERN_ERR "megasas: Failed to register IRQ\n");
goto fail_irq;
@@ -3443,6 +3453,8 @@ megasas_resume(struct pci_dev *pdev)
return 0;
fail_irq:
+ pci_disable_msi(pdev);
+
fail_init_mfi:
if (instance->evt_detail)
pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
@@ -3519,6 +3531,7 @@ static void __devexit megasas_detach_one
instance->instancet->disable_intr(instance->reg_set);
free_irq(instance->pdev->irq, instance);
+ pci_disable_msi(pdev);
megasas_release_mfi(instance);
next reply other threads:[~2010-06-07 7:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-07 7:36 Clemens Ladisch [this message]
2010-06-07 21:37 ` [PATCH] megaraid_sas: enable message-signaled interrupts Yang, Bo
2010-06-08 0:28 ` Nicholas A. Bellinger
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=4C0CA170.70003@ladisch.de \
--to=clemens@ladisch.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=megaraidlinux@lsi.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