diff options
author | Ido Shamay <idos@mellanox.com> | 2015-06-25 11:29:42 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-06-25 02:06:27 -0700 |
commit | 488a9b48e398b157703766e2cd91ea45ac6997c5 (patch) | |
tree | e79ffb95deedbad3a6154309d40a9a9082e94030 /drivers/net/ethernet/mellanox/mlx4/mlx4_en.h | |
parent | 0eb08514fdbdcd16fd6870680cd638f203662e9d (diff) | |
download | talos-obmc-linux-488a9b48e398b157703766e2cd91ea45ac6997c5.tar.gz talos-obmc-linux-488a9b48e398b157703766e2cd91ea45ac6997c5.zip |
net/mlx4_en: Wake TX queues only when there's enough room
Indication of a single completed packet, marked by txbbs_skipped
being bigger then zero, in not enough in order to wake up a
stopped TX queue. The completed packet may contain a single TXBB,
while next packet to be sent (after the wake up) may have multiple
TXBBs (LSO/TSO packets for example), causing overflow in queue followed
by WQE corruption and TX queue timeout.
Instead, wake the stopped queue only when there's enough room for the
worst case (maximum sized WQE) packet that we should need to handle after
the queue is opened again.
Also created an helper routine - mlx4_en_is_tx_ring_full, which checks
if the current TX ring is full or not. It provides better code readability
and removes code duplication.
Signed-off-by: Ido Shamay <idos@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx4/mlx4_en.h')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/mlx4_en.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h index 32134bd98fe0..666d1669eb52 100644 --- a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h +++ b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h @@ -279,6 +279,7 @@ struct mlx4_en_tx_ring { u32 size; /* number of TXBBs */ u32 size_mask; u16 stride; + u32 full_size; u16 cqn; /* index of port CQ associated with this ring */ u32 buf_size; __be32 doorbell_qpn; |