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
@@ -642,7 +642,7 @@ static void ctcmpc_send_sweep_req(struct channel *rch)
|
||||
|
||||
kfree(header);
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
netif_trans_update(dev);
|
||||
skb_queue_tail(&ch->sweep_queue, sweep_skb);
|
||||
|
||||
fsm_addtimer(&ch->sweep_timer, 100, CTC_EVENT_RSWEEP_TIMER, ch);
|
||||
@@ -911,7 +911,7 @@ static int ctcm_tx(struct sk_buff *skb, struct net_device *dev)
|
||||
if (ctcm_test_and_set_busy(dev))
|
||||
return NETDEV_TX_BUSY;
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
netif_trans_update(dev);
|
||||
if (ctcm_transmit_skb(priv->channel[CTCM_WRITE], skb) != 0)
|
||||
return NETDEV_TX_BUSY;
|
||||
return NETDEV_TX_OK;
|
||||
@@ -994,7 +994,7 @@ static int ctcmpc_tx(struct sk_buff *skb, struct net_device *dev)
|
||||
goto done;
|
||||
}
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
netif_trans_update(dev);
|
||||
if (ctcmpc_transmit_skb(priv->channel[CTCM_WRITE], skb) != 0) {
|
||||
CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
|
||||
"%s(%s): device error - dropped",
|
||||
|
Reference in New Issue
Block a user