aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorhayeswang <hayeswang@realtek.com>2014-11-12 10:05:04 +0800
committerDavid S. Miller <davem@davemloft.net>2014-11-12 14:49:08 -0500
commit9451a11c1821c559ddfffc55b4c6ef350205fdbf (patch)
tree4403051717887aea37e0af9a83c8e08334710f22 /drivers
parentr8152: remove the duplicate init for the list of rx_done (diff)
downloadlinux-dev-9451a11c1821c559ddfffc55b4c6ef350205fdbf.tar.xz
linux-dev-9451a11c1821c559ddfffc55b4c6ef350205fdbf.zip
r8152: clear the flag of SCHEDULE_TASKLET in tasklet
Clear the flag of SCHEDULE_TASKLET in bottom_half() to avoid re-schedule the tasklet again by workqueue. Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/usb/r8152.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index a3004675e659..ad9dd7d17508 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -1797,6 +1797,8 @@ static void bottom_half(unsigned long data)
if (!netif_carrier_ok(tp->netdev))
return;
+ clear_bit(SCHEDULE_TASKLET, &tp->flags);
+
rx_bottom(tp);
tx_bottom(tp);
}