net/mlx5: fix TSO enablement
authorShahaf Shuler <shahafs@mellanox.com>
Thu, 15 Mar 2018 11:00:05 +0000 (13:00 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 30 Mar 2018 12:08:44 +0000 (14:08 +0200)
TSO should be set if either of the TSO offload flags is requested.

Fixes: dbccb4cddcd2 ("net/mlx5: convert to new Tx offloads API")
Cc: stable@dpdk.org
Signed-off-by: Shahaf Shuler <shahafs@mellanox.com>
Acked-by: Yongseok Koh <yskoh@mellanox.com>
drivers/net/mlx5/mlx5_txq.c

index 7ee7dda..9139429 100644 (file)
@@ -684,7 +684,9 @@ txq_set_params(struct mlx5_txq_ctrl *txq_ctrl)
        eth_tx_burst_t tx_pkt_burst =
                mlx5_select_tx_function(txq_ctrl->priv->dev);
        int is_empw_func = is_empw_burst_func(tx_pkt_burst);
-       int tso = !!(txq_ctrl->txq.offloads & DEV_TX_OFFLOAD_TCP_TSO);
+       int tso = !!(txq_ctrl->txq.offloads & (DEV_TX_OFFLOAD_TCP_TSO |
+                                              DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
+                                              DEV_TX_OFFLOAD_GRE_TNL_TSO));
 
        txq_inline = (config->txq_inline == MLX5_ARG_UNSET) ?
                0 : config->txq_inline;