Message ID | 20240326222022.27926-8-tariqt@nvidia.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | mlx5e misc patches | expand |
On Wed, Mar 27, 2024 at 12:20:21AM +0200, Tariq Toukan wrote: > From: Carolina Jubran <cjubran@nvidia.com> > > Since sinfo is no longer passed as an argument to > mlx5e_xmit_xdp_frame(), the comment is inconsistent. > > check_result must be zero when the packet is fragmented. > > Signed-off-by: Carolina Jubran <cjubran@nvidia.com> > Reviewed-by: Tariq Toukan <tariqt@nvidia.com> > Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> > Signed-off-by: Tariq Toukan <tariqt@nvidia.com> Hi Carolina and Tariq, This looks good to me, but if there is a need to repost for some other reason perhaps it would be worth mentioning that the commit where the sinfo parameter was removed from mlx5e_xmit_xdp_frame() was: eb9b9fdcafe2 ("net/mlx5e: Introduce extended version for mlx5e_xmit_data") That notwithstanding, Reviewed-by: Simon Horman <horms@kernel.org>
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c b/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c index 82b5ca1be4f3..4610621a340e 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c @@ -565,7 +565,7 @@ mlx5e_xmit_xdp_frame(struct mlx5e_xdpsq *sq, struct mlx5e_xmit_data *xdptxd, linear = !!(dma_len - inline_hdr_sz); ds_cnt = MLX5E_TX_WQE_EMPTY_DS_COUNT + linear + !!inline_hdr_sz; - /* check_result must be 0 if sinfo is passed. */ + /* check_result must be 0 if xdptxd->has_frags is true. */ if (!check_result) { int stop_room = 1;