Re: [dpdk-dev] [PATCH] net/mlx5: fix Tx max inline with TSO

2017-05-05 Thread Thomas Monjalon
03/05/2017 08:59, Nélio Laranjeiro: > On Wed, May 03, 2017 at 09:55:35AM +0300, Shahaf Shuler wrote: > > When TSO is enabled, Verbs layer aggregates the TSO > > inline size with the txq inline size for the Tx creation, > > while the PMD takes the maximum among them. > > > > Fixing it by adjusting

Re: [dpdk-dev] [PATCH] net/mlx5: fix Tx max inline with TSO

2017-05-03 Thread Adrien Mazarguil
On Wed, May 03, 2017 at 09:55:35AM +0300, Shahaf Shuler wrote: > When TSO is enabled, Verbs layer aggregates the TSO > inline size with the txq inline size for the Tx creation, > while the PMD takes the maximum among them. > > Fixing it by adjusting the max inline parameter before > passing to to

Re: [dpdk-dev] [PATCH] net/mlx5: fix Tx max inline with TSO

2017-05-03 Thread Nélio Laranjeiro
On Wed, May 03, 2017 at 09:55:35AM +0300, Shahaf Shuler wrote: > When TSO is enabled, Verbs layer aggregates the TSO > inline size with the txq inline size for the Tx creation, > while the PMD takes the maximum among them. > > Fixing it by adjusting the max inline parameter before > passing to to

[dpdk-dev] [PATCH] net/mlx5: fix Tx max inline with TSO

2017-05-02 Thread Shahaf Shuler
When TSO is enabled, Verbs layer aggregates the TSO inline size with the txq inline size for the Tx creation, while the PMD takes the maximum among them. Fixing it by adjusting the max inline parameter before passing to to Verbs. Fixes: 3f13f8c23a7c ("net/mlx5: support hardware TSO") Signed-off-