Re: [dpdk-dev] [PATCH] net/mlx5: fix icc compilation issue with type qualifier

2019-07-22 Thread Ferruh Yigit
On 7/22/2019 7:26 PM, Viacheslav Ovsiienko wrote: > This fixes icc warning "type qualifier is meaningless on cast type". > > [1] http://patches.dpdk.org/patch/56810/ > > Fixes: aa0d2b1bec2d ("net/mlx5: introduce Tx burst routine template") > > Signed-off-by: Viacheslav Ovsiienko Squashed into

[dpdk-dev] [PATCH] net/mlx5: fix icc compilation issue with type qualifier

2019-07-22 Thread Viacheslav Ovsiienko
This fixes icc warning "type qualifier is meaningless on cast type". [1] http://patches.dpdk.org/patch/56810/ Fixes: aa0d2b1bec2d ("net/mlx5: introduce Tx burst routine template") Signed-off-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5_rxtx.c | 2 +- 1 file changed, 1 insertion(+), 1 del

Re: [dpdk-dev] [PATCH] net/mlx5: fix ICC compilation

2018-03-27 Thread Shahaf Shuler
Wednesday, March 21, 2018 11:53 AM, Ferruh Yigit: > On 3/19/2018 10:42 AM, Nelio Laranjeiro wrote: > > Remove the second declaration of device_attr [1] inside the loop as > > well as the query_device_ex() which has already been done outside of the > loop. > > > > Fixes: 9a761de8ea14 ("net/mlx5: flo

Re: [dpdk-dev] [PATCH] net/mlx5: fix ICC compilation

2018-03-21 Thread Ferruh Yigit
On 3/19/2018 10:42 AM, Nelio Laranjeiro wrote: > Remove the second declaration of device_attr [1] inside the loop as well as > the query_device_ex() which has already been done outside of the loop. > > Fixes: 9a761de8ea14 ("net/mlx5: flow counter support") > Cc: or...@mellanox.com > > Reported-by

Re: [dpdk-dev] [PATCH] net/mlx5: fix ICC compilation

2018-03-20 Thread Shahaf Shuler
Wednesday, March 21, 2018 1:16 AM, Yongseok Koh: > > On Mar 19, 2018, at 3:42 AM, Nelio Laranjeiro > wrote: > > > > Remove the second declaration of device_attr [1] inside the loop as > > well as the query_device_ex() which has already been done outside of the > loop. > > > > Fixes: 9a761de8ea14 (

Re: [dpdk-dev] [PATCH] net/mlx5: fix ICC compilation

2018-03-20 Thread Yongseok Koh
> On Mar 19, 2018, at 3:42 AM, Nelio Laranjeiro > wrote: > > Remove the second declaration of device_attr [1] inside the loop as well as > the query_device_ex() which has already been done outside of the loop. > > Fixes: 9a761de8ea14 ("net/mlx5: flow counter support") > Cc: or...@mellanox.com

[dpdk-dev] [PATCH] net/mlx5: fix ICC compilation

2018-03-19 Thread Nelio Laranjeiro
Remove the second declaration of device_attr [1] inside the loop as well as the query_device_ex() which has already been done outside of the loop. Fixes: 9a761de8ea14 ("net/mlx5: flow counter support") Cc: or...@mellanox.com Reported-by: Ferruh Yigit Signed-off-by: Nelio Laranjeiro [1] https:/