Re: [dpdk-dev] [PATCH] ethdev: use correct method name in ethdev header file

2019-03-19 Thread Ferruh Yigit
On 3/12/2019 5:40 PM, Stephen Hemminger wrote: > On Tue, 12 Mar 2019 18:07:42 +0200 > Rami Rosen wrote: > >> This patch fixes rte_ethdev header file to use the correct method name, >> namely to use rte_eth_dev_info_get() instead of >> rte_eth_dev_infos_get(). >> >> Fixes: a4996bd89c42 ("ethdev:

Re: [dpdk-dev] [PATCH] ethdev: use correct method name in ethdev header file

2019-03-12 Thread Stephen Hemminger
On Tue, 12 Mar 2019 18:07:42 +0200 Rami Rosen wrote: > This patch fixes rte_ethdev header file to use the correct method name, > namely to use rte_eth_dev_info_get() instead of > rte_eth_dev_infos_get(). > > Fixes: a4996bd89c42 ("ethdev: new Rx/Tx offloads API") > Fixes: 4f5701f28bd4 ("examples

[dpdk-dev] [PATCH] ethdev: use correct method name in ethdev header file

2019-03-12 Thread Rami Rosen
This patch fixes rte_ethdev header file to use the correct method name, namely to use rte_eth_dev_info_get() instead of rte_eth_dev_infos_get(). Fixes: a4996bd89c42 ("ethdev: new Rx/Tx offloads API") Fixes: 4f5701f28bd4 ("examples: fix RSS hash function configuration") Signed-off-by: Rami Rosen