Re: [dpdk-dev] [PATCH] net/mlx5: fix MTU update Changing the MTU is not related to changing the number of segments, activating or not the multi-segment support should be handled by the application.

2018-01-29 Thread Nélio Laranjeiro
Hi Erez, On Sun, Jan 28, 2018 at 03:39:47PM +0200, Erez Ferber wrote: > This is a backport based on commit > a0edafe4099b1ef139242abb7baa2c2a48b83fd2 There is some issues in this commit, first the title line exceed the 75 characters. Second it is submitted on the dev mailing list whereas it seem

[dpdk-dev] [PATCH] net/mlx5: fix MTU update Changing the MTU is not related to changing the number of segments, activating or not the multi-segment support should be handled by the application.

2018-01-28 Thread Erez Ferber
This is a backport based on commit a0edafe4099b1ef139242abb7baa2c2a48b83fd2 Signed-off-by: Erez Ferber --- drivers/net/mlx5/mlx5_ethdev.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/mlx5/mlx5_ethdev.c b/drivers/net/mlx5/mlx5_ethdev.c index c0f73e9..f73d26e 1

Re: [dpdk-dev] [PATCH] net/mlx5: fix MTU update

2017-08-02 Thread Yongseok Koh
> On Aug 1, 2017, at 12:55 AM, Nelio Laranjeiro > wrote: > > Changing the MTU is not related to changing the number of segments, > activating or not the multi-segment support should be handled by the > application. > > Fixes: 9964b965ad69 ("net/mlx5: re-add Rx scatter support") > Cc: sta...@dp

Re: [dpdk-dev] [PATCH] net/mlx5: fix MTU update

2017-08-01 Thread Nélio Laranjeiro
On Tue, Aug 01, 2017 at 12:11:16PM +0200, Adrien Mazarguil wrote: > On Tue, Aug 01, 2017 at 09:55:57AM +0200, Nelio Laranjeiro wrote: > > Changing the MTU is not related to changing the number of segments, > > activating or not the multi-segment support should be handled by the > > application. > >

Re: [dpdk-dev] [PATCH] net/mlx5: fix MTU update

2017-08-01 Thread Adrien Mazarguil
On Tue, Aug 01, 2017 at 09:55:57AM +0200, Nelio Laranjeiro wrote: > Changing the MTU is not related to changing the number of segments, > activating or not the multi-segment support should be handled by the > application. > > Fixes: 9964b965ad69 ("net/mlx5: re-add Rx scatter support") > Cc: sta...

[dpdk-dev] [PATCH] net/mlx5: fix MTU update

2017-08-01 Thread Nelio Laranjeiro
Changing the MTU is not related to changing the number of segments, activating or not the multi-segment support should be handled by the application. Fixes: 9964b965ad69 ("net/mlx5: re-add Rx scatter support") Cc: sta...@dpdk.org Signed-off-by: Nelio Laranjeiro Acked-by: Yongseok Koh --- drive