rtlwifi: rtl_usb: Fix for URB leaking when doing ifconfig up/down
commit 575ddce0507789bf9830d089557d2199d2f91865 upstream. In the function rtl_usb_start we pre-allocate a certain number of urbs for RX path but they will not be freed when calling rtl_usb_stop. This results in leaking urbs when doing ifconfig up and down. Eventually, the system has no available urbs. Signed-off-by: Michael Schenk <michael.schenk@albis-elcon.com> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
de5634875b
commit
151d4c0fb5
1 changed files with 18 additions and 0 deletions
|
@ -834,12 +834,30 @@ static void rtl_usb_stop(struct ieee80211_hw *hw)
|
||||||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||||
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
|
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
|
||||||
struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw));
|
struct rtl_usb *rtlusb = rtl_usbdev(rtl_usbpriv(hw));
|
||||||
|
struct urb *urb;
|
||||||
|
|
||||||
/* should after adapter start and interrupt enable. */
|
/* should after adapter start and interrupt enable. */
|
||||||
set_hal_stop(rtlhal);
|
set_hal_stop(rtlhal);
|
||||||
cancel_work_sync(&rtlpriv->works.fill_h2c_cmd);
|
cancel_work_sync(&rtlpriv->works.fill_h2c_cmd);
|
||||||
/* Enable software */
|
/* Enable software */
|
||||||
SET_USB_STOP(rtlusb);
|
SET_USB_STOP(rtlusb);
|
||||||
|
|
||||||
|
/* free pre-allocated URBs from rtl_usb_start() */
|
||||||
|
usb_kill_anchored_urbs(&rtlusb->rx_submitted);
|
||||||
|
|
||||||
|
tasklet_kill(&rtlusb->rx_work_tasklet);
|
||||||
|
cancel_work_sync(&rtlpriv->works.lps_change_work);
|
||||||
|
|
||||||
|
flush_workqueue(rtlpriv->works.rtl_wq);
|
||||||
|
|
||||||
|
skb_queue_purge(&rtlusb->rx_queue);
|
||||||
|
|
||||||
|
while ((urb = usb_get_from_anchor(&rtlusb->rx_cleanup_urbs))) {
|
||||||
|
usb_free_coherent(urb->dev, urb->transfer_buffer_length,
|
||||||
|
urb->transfer_buffer, urb->transfer_dma);
|
||||||
|
usb_free_urb(urb);
|
||||||
|
}
|
||||||
|
|
||||||
rtlpriv->cfg->ops->hw_disable(hw);
|
rtlpriv->cfg->ops->hw_disable(hw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue