Re: [dpdk-dev] [PATCH] net/ring: fix adding MAC addresses

2017-05-30 Thread Ferruh Yigit
On 5/30/2017 1:45 PM, Ferruh Yigit wrote: > On 5/26/2017 2:18 PM, Charles (Chas) Williams wrote: >> When .mac_addr_add() was changed to allow a return code, ring was changed >> to return -ENOTSUP. This changes the behavior of the rte_ring driver in >> a way that does not maintain backward compatib

Re: [dpdk-dev] [PATCH] net/ring: fix adding MAC addresses

2017-05-30 Thread Ferruh Yigit
On 5/26/2017 2:18 PM, Charles (Chas) Williams wrote: > When .mac_addr_add() was changed to allow a return code, ring was changed > to return -ENOTSUP. This changes the behavior of the rte_ring driver in > a way that does not maintain backward compatibility. Additionally, if > the intent is to ret

[dpdk-dev] [PATCH] net/ring: fix adding MAC addresses

2017-05-26 Thread Charles (Chas) Williams
When .mac_addr_add() was changed to allow a return code, ring was changed to return -ENOTSUP. This changes the behavior of the rte_ring driver in a way that does not maintain backward compatibility. Additionally, if the intent is to return -ENOTSUP, you could simply not define the stubs. Fixes: