r8152: Fix potential PM refcount imbalance
[ Upstream commit 9c23aa5147 ]
rtl8152_close() takes the refcount via usb_autopm_get_interface() but
it doesn't release when RTL8152_UNPLUG test hits. This may lead to
the imbalance of PM refcount. This patch addresses it.
Link: https://bugzilla.suse.com/show_bug.cgi?id=1186194
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c98a7916cd
commit
f6a2ff040b
@@ -5282,10 +5282,11 @@ static int rtl8152_close(struct net_device *netdev)
|
|||||||
tp->rtl_ops.down(tp);
|
tp->rtl_ops.down(tp);
|
||||||
|
|
||||||
mutex_unlock(&tp->control);
|
mutex_unlock(&tp->control);
|
||||||
|
|
||||||
usb_autopm_put_interface(tp->intf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!res)
|
||||||
|
usb_autopm_put_interface(tp->intf);
|
||||||
|
|
||||||
free_all_mem(tp);
|
free_all_mem(tp);
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
|
|||||||
Reference in New Issue
Block a user