Re: [dpdk-dev] [PATCH v4 1/2] ethdev: add supported hash function check

2018-04-20 Thread Adrien Mazarguil
On Thu, Apr 19, 2018 at 11:48:39PM +0800, Xueming Li wrote: > Add supported RSS hash function check in device configuration to > have better error verbosity for application developers. > > Signed-off-by: Xueming Li In general, I do not like API/wrappers generating log messages on their own, as t

[dpdk-dev] [PATCH v4 1/2] ethdev: add supported hash function check

2018-04-19 Thread Xueming Li
Add supported RSS hash function check in device configuration to have better error verbosity for application developers. Signed-off-by: Xueming Li --- lib/librte_ether/rte_ethdev.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/li