diff options
author | Hemant Kumar <hemantk@codeaurora.org> | 2012-10-25 18:17:54 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-17 13:14:24 -0800 |
commit | 690bfe52ce0784e7a24ae8a37929580b6bd65bc9 (patch) | |
tree | ae2e23d3d9f4d3aa50392d7571ef31dea7f7256c /fs | |
parent | db138ef294594d3721dae6409d9e13d6ebf3df39 (diff) | |
download | kernel_samsung_aries-690bfe52ce0784e7a24ae8a37929580b6bd65bc9.zip kernel_samsung_aries-690bfe52ce0784e7a24ae8a37929580b6bd65bc9.tar.gz kernel_samsung_aries-690bfe52ce0784e7a24ae8a37929580b6bd65bc9.tar.bz2 |
net: usb: Fix memory leak on Tx data path
[ Upstream commit 39707c2a3ba5011038b363f84d37c8a98d2d9db1 ]
Driver anchors the tx urbs and defers the urb submission if
a transmit request comes when the interface is suspended.
Anchoring urb increments the urb reference count. These
deferred urbs are later accessed by calling usb_get_from_anchor()
for submission during interface resume. usb_get_from_anchor()
unanchors the urb but urb reference count remains same.
This causes the urb reference count to remain non-zero
after usb_free_urb() gets called and urb never gets freed.
Hence call usb_put_urb() after anchoring the urb to properly
balance the reference count for these deferred urbs. Also,
unanchor these deferred urbs during disconnect, to free them
up.
Signed-off-by: Hemant Kumar <hemantk@codeaurora.org>
Acked-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
0 files changed, 0 insertions, 0 deletions