From: Stephen Hemminger <shemminger@linux-foundation.org>
To: James Ketrenos <jketreno@linux.intel.com>, Jeff Garzik <jeff@garzik.org>
Cc: linux-wireless@vger.kernel.org
Subject: [PATCH] iwlwifi MSI support (rev3)
Date: Thu, 14 Jun 2007 11:48:09 -0700 [thread overview]
Message-ID: <20070614114809.39106c17@localhost> (raw)
The previous patch would crash on remove. pci_disable_msi has to be
called after free_irq. FYI - pci_disable_msi is safe if MSI hasn't been
enabled.
--- a/drivers/net/wireless/mac80211/iwlwifi/base.c 2007-06-13 11:10:10.000000000 -0700
+++ b/drivers/net/wireless/mac80211/iwlwifi/base.c 2007-06-14 11:47:01.000000000 -0700
@@ -8117,10 +8117,13 @@ static int iwl_pci_probe(struct pci_dev
/* If power management is turned on, default to AC mode */
priv->power_mode = IWL_POWER_AC;
priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
+
+ pci_enable_msi(pdev);
+
err = request_irq(pdev->irq, iwl_isr, IRQF_SHARED, DRV_NAME, priv);
if (err) {
IWL_ERROR("Error allocating IRQ %d\n", pdev->irq);
- goto out_destroy_workqueue;
+ goto out_disable_msi;
}
mutex_lock(&priv->mutex);
@@ -8157,7 +8160,8 @@ static int iwl_pci_probe(struct pci_dev
out_release_irq:
free_irq(pdev->irq, priv);
- out_destroy_workqueue:
+ out_disable_msi:
+ pci_disable_msi(pdev);
destroy_workqueue(priv->workqueue);
priv->workqueue = NULL;
iwl_unset_hw_setting(priv);
@@ -8225,6 +8229,7 @@ static void iwl_pci_remove(struct pci_de
priv->workqueue = NULL;
free_irq(pdev->irq, priv);
+ pci_disable_msi(pdev);
iounmap(priv->hw_base);
pci_release_regions(pdev);
pci_disable_device(pdev);
next reply other threads:[~2007-06-14 18:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-14 18:48 Stephen Hemminger [this message]
2007-06-14 18:52 ` [PATCH] iwlwifi MSI support (rev3) Jeff Garzik
2007-06-14 20:17 ` Stephen Hemminger
2007-06-14 22:47 ` Stephen Hemminger
2007-06-14 23:02 ` Jeff Garzik
2007-06-15 0:11 ` Stephen Hemminger
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=20070614114809.39106c17@localhost \
--to=shemminger@linux-foundation.org \
--cc=jeff@garzik.org \
--cc=jketreno@linux.intel.com \
--cc=linux-wireless@vger.kernel.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).