treewide: replace dev->trans_start update with helper
Replace all trans_start updates with netif_trans_update helper. change was done via spatch: struct net_device *d; @@ - d->trans_start = jiffies + netif_trans_update(d) Compile tested only. Cc: user-mode-linux-devel@lists.sourceforge.net Cc: linux-xtensa@linux-xtensa.org Cc: linux1394-devel@lists.sourceforge.net Cc: linux-rdma@vger.kernel.org Cc: netdev@vger.kernel.org Cc: MPT-FusionLinux.pdl@broadcom.com Cc: linux-scsi@vger.kernel.org Cc: linux-can@vger.kernel.org Cc: linux-parisc@vger.kernel.org Cc: linux-omap@vger.kernel.org Cc: linux-hams@vger.kernel.org Cc: linux-usb@vger.kernel.org Cc: linux-wireless@vger.kernel.org Cc: linux-s390@vger.kernel.org Cc: devel@driverdev.osuosl.org Cc: b.a.t.m.a.n@lists.open-mesh.org Cc: linux-bluetooth@vger.kernel.org Signed-off-by: Florian Westphal <fw@strlen.de> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> Acked-by: Mugunthan V N <mugunthanvnm@ti.com> Acked-by: Antonio Quartulli <a@unstable.cc> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
ba162f8eed
commit
860e9538a9
@@ -1117,7 +1117,7 @@ static void bcm_sysport_tx_timeout(struct net_device *dev)
|
||||
{
|
||||
netdev_warn(dev, "transmit timeout!\n");
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
netif_trans_update(dev);
|
||||
dev->stats.tx_errors++;
|
||||
|
||||
netif_tx_wake_all_queues(dev);
|
||||
|
@@ -3059,7 +3059,7 @@ static void bcmgenet_timeout(struct net_device *dev)
|
||||
bcmgenet_intrl2_0_writel(priv, int0_enable, INTRL2_CPU_MASK_CLEAR);
|
||||
bcmgenet_intrl2_1_writel(priv, int1_enable, INTRL2_CPU_MASK_CLEAR);
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
netif_trans_update(dev);
|
||||
|
||||
dev->stats.tx_errors++;
|
||||
|
||||
|
@@ -2462,7 +2462,7 @@ static void sbmac_tx_timeout (struct net_device *dev)
|
||||
spin_lock_irqsave(&sc->sbm_lock, flags);
|
||||
|
||||
|
||||
dev->trans_start = jiffies; /* prevent tx timeout */
|
||||
netif_trans_update(dev); /* prevent tx timeout */
|
||||
dev->stats.tx_errors++;
|
||||
|
||||
spin_unlock_irqrestore(&sc->sbm_lock, flags);
|
||||
|
@@ -7383,7 +7383,7 @@ static void tg3_napi_fini(struct tg3 *tp)
|
||||
|
||||
static inline void tg3_netif_stop(struct tg3 *tp)
|
||||
{
|
||||
tp->dev->trans_start = jiffies; /* prevent tx timeout */
|
||||
netif_trans_update(tp->dev); /* prevent tx timeout */
|
||||
tg3_napi_disable(tp);
|
||||
netif_carrier_off(tp->dev);
|
||||
netif_tx_disable(tp->dev);
|
||||
|
Reference in New Issue
Block a user