[dpdk-dev] [PATCH v1] net/tap: add RSS hash update callback

2018-05-10 Thread Ophir Munk
Add RSS hash update callback to eth_dev_ops. Signed-off-by: Ophir Munk --- v1: Initial release v2: typo fix drivers/net/tap/rte_eth_tap.c | 39 --- drivers/net/tap/tap_rss.h | 3 +++ 2 files changed, 39 insertions(+), 3 deletions(-) diff --git a/drivers

Re: [dpdk-dev] [PATCH v1] net/tap: add RSS hash update callback

2018-05-10 Thread Stephen Hemminger
On Thu, 10 May 2018 16:23:38 + Ophir Munk wrote: > - * limitation: TAP suppors all of the following hash > + * limitation: TAP suppors all of IP, UDP and TCP hash >* functions together and not in partial combinations s/suppors/supports/

[dpdk-dev] [PATCH v1] net/tap: add RSS hash update callback

2018-05-10 Thread Ophir Munk
Add an RSS hash update callback to eth_dev_ops. Signed-off-by: Ophir Munk --- drivers/net/tap/rte_eth_tap.c | 39 --- drivers/net/tap/tap_rss.h | 3 +++ 2 files changed, 39 insertions(+), 3 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/driver