Re: [dpdk-dev] [PATCH] net/mlx4: verify Tx max sges

2018-01-10 Thread Shahaf Shuler
Friday, January 5, 2018 6:53 PM, Adrien Mazarguil: > > Signed-off-by: Moti Haimovsky > > Except for a really minor nit below: > > Acked-by: Adrien Mazarguil Applied to next-net-mlx with the suggested fix. Thanks > > > --- > > drivers/net/mlx4/mlx4.c | 1 + > > drivers/net/mlx4/mlx4_prm

Re: [dpdk-dev] [PATCH] net/mlx4: verify Tx max sges

2018-01-05 Thread Adrien Mazarguil
On Thu, Jan 04, 2018 at 06:12:03PM +0200, Moti Haimovsky wrote: > Max number of Tx scatter-gather entries is a property of the device > and is queried at init. This value was not changed in a while and > most probably will not be changed in the future, Therefore and > in order to enhance Tx perform

[dpdk-dev] [PATCH] net/mlx4: verify Tx max sges

2018-01-04 Thread Moti Haimovsky
Max number of Tx scatter-gather entries is a property of the device and is queried at init. This value was not changed in a while and most probably will not be changed in the future, Therefore and in order to enhance Tx performance, the Tx max-sge value is hardcoded in mlx4 PRM code. This patch add