Re: [dpdk-dev] small error in rte_eth_bond_api.c

2020-07-17 Thread Анатолий Дубинский
Hello! I've found a small error in .../drivers/net/bonding/rte_eth_bond_api.c : Func rte_eth_bond_create: ret = rte_vdev_init(name, devargs); if (ret) return -ENOMEM; So, we get ENOMEM error regardless of the actual error code. This code would be more applicable. ret = rte_vdev_init(name, de

Re: [dpdk-dev] small error in rte_eth_bond_api.c

2020-06-22 Thread Wei Hu (Xavier)
Hi, Anatoly Dubinsky it looks you are right. Maybe you can send a patch to fix it. Thanks, Xavier On 2020/6/20 2:12, Анатолий Дубинский wrote: Hello! I've found a small error in .../drivers/net/bonding/rte_eth_bond_api.c : Func rte_eth_bond_create: ret = rte_vdev_init(name, devargs); if (ret

[dpdk-dev] small error in rte_eth_bond_api.c

2020-06-22 Thread Анатолий Дубинский
Hello! I've found a small error in .../drivers/net/bonding/rte_eth_bond_api.c : Func rte_eth_bond_create: ret = rte_vdev_init(name, devargs); if (ret) return -ENOMEM; So, we get ENOMEM error regardless of the actual error code. This code would be more applicable. ret = rte_vdev_init(name, devar