Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 335581
b: refs/heads/master
c: 175c0df
h: refs/heads/master
i:
  335579: ffd8872
v: v3
  • Loading branch information
Xiaotian Feng authored and David S. Miller committed Nov 3, 2012
1 parent 2db606f commit b14cd13
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d145f7ec23b6366e2b75442eaefafa11077ed568
refs/heads/master: 175c0dffef310fc7d7f026ca4a7682beb2fbd8ec
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/jme.c
Original file line number Diff line number Diff line change
Expand Up @@ -1948,10 +1948,10 @@ jme_close(struct net_device *netdev)

JME_NAPI_DISABLE(jme);

tasklet_disable(&jme->linkch_task);
tasklet_disable(&jme->txclean_task);
tasklet_disable(&jme->rxclean_task);
tasklet_disable(&jme->rxempty_task);
tasklet_kill(&jme->linkch_task);
tasklet_kill(&jme->txclean_task);
tasklet_kill(&jme->rxclean_task);
tasklet_kill(&jme->rxempty_task);

jme_disable_rx_engine(jme);
jme_disable_tx_engine(jme);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/marvell/skge.c
Original file line number Diff line number Diff line change
Expand Up @@ -4026,7 +4026,7 @@ static void __devexit skge_remove(struct pci_dev *pdev)
dev0 = hw->dev[0];
unregister_netdev(dev0);

tasklet_disable(&hw->phy_task);
tasklet_kill(&hw->phy_task);

spin_lock_irq(&hw->hw_lock);
hw->intr_mask = 0;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/net/ethernet/micrel/ksz884x.c
Original file line number Diff line number Diff line change
Expand Up @@ -5407,8 +5407,8 @@ static int netdev_close(struct net_device *dev)
/* Delay for receive task to stop scheduling itself. */
msleep(2000 / HZ);

tasklet_disable(&hw_priv->rx_tasklet);
tasklet_disable(&hw_priv->tx_tasklet);
tasklet_kill(&hw_priv->rx_tasklet);
tasklet_kill(&hw_priv->tx_tasklet);
free_irq(dev->irq, hw_priv->dev);

transmit_cleanup(hw_priv, 0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ static int axienet_stop(struct net_device *ndev)
axienet_setoptions(ndev, lp->options &
~(XAE_OPTION_TXEN | XAE_OPTION_RXEN));

tasklet_disable(&lp->dma_err_tasklet);
tasklet_kill(&lp->dma_err_tasklet);

free_irq(lp->tx_irq, ndev);
free_irq(lp->rx_irq, ndev);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/b43legacy/pio.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ static void cancel_transfers(struct b43legacy_pioqueue *queue)
{
struct b43legacy_pio_txpacket *packet, *tmp_packet;

tasklet_disable(&queue->txtask);
tasklet_kill(&queue->txtask);

list_for_each_entry_safe(packet, tmp_packet, &queue->txrunning, list)
free_txpacket(packet, 0);
Expand Down

0 comments on commit b14cd13

Please sign in to comment.