Skip to content

Commit

Permalink
net: dont update dev->trans_start in 10GB drivers
Browse files Browse the repository at this point in the history
Followup of commits 9d21493
and 08baf56
(net: tx scalability works : trans_start)
(net: txq_trans_update() helper)

Now that core network takes care of trans_start updates, dont do it
in drivers themselves, if possible. Multi queue drivers can
avoid one cache miss (on dev->trans_start) in their start_xmit()
handler.

Exceptions are NETIF_F_LLTX drivers (vxge & tehuti)

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and davem330 committed May 29, 2009
1 parent 3f1f39c commit 2867975
Show file tree
Hide file tree
Showing 16 changed files with 8 additions and 25 deletions.
2 changes: 0 additions & 2 deletions drivers/net/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,6 @@ static int be_xmit(struct sk_buff *skb, struct net_device *netdev)

be_txq_notify(&adapter->ctrl, txq->id, wrb_cnt);

netdev->trans_start = jiffies;

be_tx_stats_update(adapter, wrb_cnt, copied, stopped);
return NETDEV_TX_OK;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/bnx2x_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10617,7 +10617,6 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev)
mmiowb();

fp->tx_bd_prod += nbd;
dev->trans_start = jiffies;

if (unlikely(bnx2x_tx_avail(fp) < MAX_SKB_FRAGS + 3)) {
/* We want bnx2x_tx_int to "see" the updated tx_bd_prod
Expand Down
1 change: 0 additions & 1 deletion drivers/net/chelsio/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,6 @@ int t1_start_xmit(struct sk_buff *skb, struct net_device *dev)
cpl->vlan_valid = 0;

send:
dev->trans_start = jiffies;
ret = t1_sge_tx(skb, adapter, 0, dev);

/* If transmit busy, and we reallocated skb's due to headroom limit,
Expand Down
1 change: 0 additions & 1 deletion drivers/net/cxgb3/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,6 @@ int t3_eth_xmit(struct sk_buff *skb, struct net_device *dev)
if (vlan_tx_tag_present(skb) && pi->vlan_grp)
qs->port_stats[SGE_PSTAT_VLANINS]++;

dev->trans_start = jiffies;
spin_unlock(&q->lock);

/*
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/enic/enic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,6 @@ static int enic_hard_start_xmit(struct sk_buff *skb, struct net_device *netdev)
if (vnic_wq_desc_avail(wq) < MAX_SKB_FRAGS + 1)
netif_stop_queue(netdev);

netdev->trans_start = jiffies;

spin_unlock_irqrestore(&enic->wq_lock[0], flags);

return NETDEV_TX_OK;
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ixgb/ixgb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,6 @@ ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)

if (count) {
ixgb_tx_queue(adapter, count, vlan_id, tx_flags);
netdev->trans_start = jiffies;
/* Make sure there is space in the ring for the next send. */
ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ixgbe/ixgbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4863,7 +4863,6 @@ static int ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
if (count) {
ixgbe_tx_queue(adapter, tx_ring, tx_flags, count, skb->len,
hdr_len);
netdev->trans_start = jiffies;
ixgbe_maybe_stop_tx(netdev, tx_ring, DESC_NEEDED);

} else {
Expand Down
1 change: 0 additions & 1 deletion drivers/net/mlx4/en_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,6 @@ int mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
/* Ring doorbell! */
wmb();
writel(ring->doorbell_qpn, mdev->uar_map + MLX4_SEND_DOORBELL);
dev->trans_start = jiffies;

/* Poll CQ here */
mlx4_en_xmit_poll(priv, tx_ind);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/myri10ge/myri10ge.c
Original file line number Diff line number Diff line change
Expand Up @@ -2892,7 +2892,6 @@ static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
tx->stop_queue++;
netif_tx_stop_queue(netdev_queue);
}
dev->trans_start = jiffies;
return 0;

abort_linearize:
Expand Down
1 change: 0 additions & 1 deletion drivers/net/netxen/netxen_nic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,6 @@ netxen_nic_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
netxen_nic_update_cmd_producer(adapter, tx_ring, producer);

adapter->stats.xmitcalled++;
netdev->trans_start = jiffies;

return NETDEV_TX_OK;

Expand Down
1 change: 0 additions & 1 deletion drivers/net/qlge/qlge_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2108,7 +2108,6 @@ static int qlge_send(struct sk_buff *skb, struct net_device *ndev)
wmb();

ql_write_db_reg(tx_ring->prod_idx, tx_ring->prod_idx_db_reg);
ndev->trans_start = jiffies;
QPRINTK(qdev, TX_QUEUED, DEBUG, "tx queued, slot %d, len %d\n",
tx_ring->prod_idx, skb->len);

Expand Down
1 change: 0 additions & 1 deletion drivers/net/s2io.c
Original file line number Diff line number Diff line change
Expand Up @@ -4299,7 +4299,6 @@ static int s2io_xmit(struct sk_buff *skb, struct net_device *dev)
s2io_stop_tx_queue(sp, fifo->fifo_no);
}
mac_control->stats_info->sw_stat.mem_allocated += skb->truesize;
dev->trans_start = jiffies;
spin_unlock_irqrestore(&fifo->tx_lock, flags);

if (sp->config.intr_type == MSI_X)
Expand Down
1 change: 1 addition & 0 deletions drivers/net/sfc/selftest.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ static int efx_begin_loopback(struct efx_tx_queue *tx_queue)
kfree_skb(skb);
return -EPIPE;
}
efx->net_dev->trans_start = jiffies;
}

return 0;
Expand Down
7 changes: 0 additions & 7 deletions drivers/net/sfc/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,6 @@ inline int efx_xmit(struct efx_nic *efx,

/* Map fragments for DMA and add to TX queue */
rc = efx_enqueue_skb(tx_queue, skb);
if (unlikely(rc != NETDEV_TX_OK))
goto out;

/* Update last TX timer */
efx->net_dev->trans_start = jiffies;

out:
return rc;
}

Expand Down
5 changes: 3 additions & 2 deletions drivers/net/tehuti.c
Original file line number Diff line number Diff line change
Expand Up @@ -1718,8 +1718,9 @@ static int bdx_tx_transmit(struct sk_buff *skb, struct net_device *ndev)
WRITE_REG(priv, f->m.reg_WPTR, f->m.wptr & TXF_WPTR_WR_PTR);

#endif
ndev->trans_start = jiffies;

#ifdef BDX_LLTX
ndev->trans_start = jiffies; /* NETIF_F_LLTX driver :( */
#endif
priv->net_stats.tx_packets++;
priv->net_stats.tx_bytes += skb->len;

Expand Down
6 changes: 4 additions & 2 deletions drivers/net/vxge/vxge-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ vxge_xmit_compl(struct __vxge_hw_fifo *fifo_hw, void *dtr,
return VXGE_HW_OK;
}

/* select a vpath to trasmit the packet */
/* select a vpath to transmit the packet */
static u32 vxge_get_vpath_no(struct vxgedev *vdev, struct sk_buff *skb,
int *do_lock)
{
Expand Down Expand Up @@ -992,7 +992,9 @@ vxge_xmit(struct sk_buff *skb, struct net_device *dev)
VXGE_HW_FIFO_TXD_TX_CKO_UDP_EN);

vxge_hw_fifo_txdl_post(fifo_hw, dtr);
dev->trans_start = jiffies;
#ifdef NETIF_F_LLTX
dev->trans_start = jiffies; /* NETIF_F_LLTX driver :( */
#endif
spin_unlock_irqrestore(&fifo->tx_lock, flags);

VXGE_COMPLETE_VPATH_TX(fifo);
Expand Down

0 comments on commit 2867975

Please sign in to comment.