diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2013-12-11 18:13:10 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-09 15:24:23 -0500 |
commit | 7e47808e7f4f16932fdd009ade4244fa2e5a7579 (patch) | |
tree | f61d6efc7814b80a94f71a45ba62a62905fbecad | |
parent | 6646ce885ff19da84a20193b1b36629f7953305a (diff) |
rtlwifi: pci: Fix oops on driver unload
commit 9278db6279e28d4d433bc8a848e10b4ece8793ed upstream.
On Fedora systems, unloading rtl8192ce causes an oops. This patch fixes the
problem reported at https://bugzilla.redhat.com/show_bug.cgi?id=852761.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/net/wireless/rtlwifi/pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c index e70b4ffaf97f..ee6a62616c72 100644 --- a/drivers/net/wireless/rtlwifi/pci.c +++ b/drivers/net/wireless/rtlwifi/pci.c | |||
@@ -734,6 +734,8 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw) | |||
734 | }; | 734 | }; |
735 | int index = rtlpci->rx_ring[rx_queue_idx].idx; | 735 | int index = rtlpci->rx_ring[rx_queue_idx].idx; |
736 | 736 | ||
737 | if (rtlpci->driver_is_goingto_unload) | ||
738 | return; | ||
737 | /*RX NORMAL PKT */ | 739 | /*RX NORMAL PKT */ |
738 | while (count--) { | 740 | while (count--) { |
739 | /*rx descriptor */ | 741 | /*rx descriptor */ |
@@ -1630,6 +1632,7 @@ static void rtl_pci_stop(struct ieee80211_hw *hw) | |||
1630 | */ | 1632 | */ |
1631 | set_hal_stop(rtlhal); | 1633 | set_hal_stop(rtlhal); |
1632 | 1634 | ||
1635 | rtlpci->driver_is_goingto_unload = true; | ||
1633 | rtlpriv->cfg->ops->disable_interrupt(hw); | 1636 | rtlpriv->cfg->ops->disable_interrupt(hw); |
1634 | cancel_work_sync(&rtlpriv->works.lps_change_work); | 1637 | cancel_work_sync(&rtlpriv->works.lps_change_work); |
1635 | 1638 | ||
@@ -1647,7 +1650,6 @@ static void rtl_pci_stop(struct ieee80211_hw *hw) | |||
1647 | ppsc->rfchange_inprogress = true; | 1650 | ppsc->rfchange_inprogress = true; |
1648 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flags); | 1651 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flags); |
1649 | 1652 | ||
1650 | rtlpci->driver_is_goingto_unload = true; | ||
1651 | rtlpriv->cfg->ops->hw_disable(hw); | 1653 | rtlpriv->cfg->ops->hw_disable(hw); |
1652 | /* some things are not needed if firmware not available */ | 1654 | /* some things are not needed if firmware not available */ |
1653 | if (!rtlpriv->max_fw_size) | 1655 | if (!rtlpriv->max_fw_size) |