Re: [dpdk-dev] [PATCH v2] ethdev: add comment to warn of ABI breakage

2020-02-18 Thread Ferruh Yigit
On 2/18/2020 1:39 PM, Ciara Power wrote: > If a function is added to the eth_dev_ops struct before > tx_descriptor_status function, this will cause ABI breakage. This is due > to static inline functions using this function, and some other functions > above it in the struct, so they cannot change po

[dpdk-dev] [PATCH v2] ethdev: add comment to warn of ABI breakage

2020-02-18 Thread Ciara Power
If a function is added to the eth_dev_ops struct before tx_descriptor_status function, this will cause ABI breakage. This is due to static inline functions using this function, and some other functions above it in the struct, so they cannot change position. A comment is added to inform developers o