Re: [PATCH] net/bonding: fix socket_id type

2022-10-12 Thread Ferruh Yigit
On 10/12/2022 3:20 PM, Markus Theil wrote: On 10/12/22 14:23, Ferruh Yigit wrote: On 10/12/2022 12:45 PM, Markus Theil wrote: From: Thorben Roemer DPDK uses int or u32 in most other places for socket IDs. Fix compilation warnings by also using int in the bonding code. Hi Markus, 'rte_eth_

Re: [PATCH] net/bonding: fix socket_id type

2022-10-12 Thread Markus Theil
On 10/12/22 14:23, Ferruh Yigit wrote: On 10/12/2022 12:45 PM, Markus Theil wrote: From: Thorben Roemer DPDK uses int or u32 in most other places for socket IDs. Fix compilation warnings by also using int in the bonding code. Hi Markus, 'rte_eth_bond_create()' is part of API, so changing i

Re: [PATCH] net/bonding: fix socket_id type

2022-10-12 Thread Ferruh Yigit
On 10/12/2022 12:45 PM, Markus Theil wrote: From: Thorben Roemer DPDK uses int or u32 in most other places for socket IDs. Fix compilation warnings by also using int in the bonding code. Hi Markus, 'rte_eth_bond_create()' is part of API, so changing it impacts the users. Since 'rte_socket_

[PATCH] net/bonding: fix socket_id type

2022-10-12 Thread Markus Theil
From: Thorben Roemer DPDK uses int or u32 in most other places for socket IDs. Fix compilation warnings by also using int in the bonding code. Signed-off-by: Thorben Roemer --- drivers/net/bonding/rte_eth_bond.h | 2 +- drivers/net/bonding/rte_eth_bond_api.c | 2 +- 2 files changed, 2 inse