Re: [dpdk-dev] [PATCH v14 2/7] ethdev: add mbuf RSS update as an offload

2019-10-29 Thread Pavan Nikhilesh Bhagavatula
>On 10/29/19 8:03 AM, pbhagavat...@marvell.com wrote: >> From: Pavan Nikhilesh >> >> Add new Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be >used to >> enable/disable PMDs write to `rte_mbuf::hash::rss`. >> PMDs notify the validity of `rte_mbuf::hash:rss` to the applcation >> by enabling `

Re: [dpdk-dev] [PATCH v14 2/7] ethdev: add mbuf RSS update as an offload

2019-10-29 Thread Andrew Rybchenko
On 10/29/19 8:03 AM, pbhagavat...@marvell.com wrote: From: Pavan Nikhilesh Add new Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be used to enable/disable PMDs write to `rte_mbuf::hash::rss`. PMDs notify the validity of `rte_mbuf::hash:rss` to the applcation by enabling `PKT_RX_RSS_HASH `

[dpdk-dev] [PATCH v14 2/7] ethdev: add mbuf RSS update as an offload

2019-10-28 Thread pbhagavatula
From: Pavan Nikhilesh Add new Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be used to enable/disable PMDs write to `rte_mbuf::hash::rss`. PMDs notify the validity of `rte_mbuf::hash:rss` to the applcation by enabling `PKT_RX_RSS_HASH ` flag in `rte_mbuf::ol_flags`. Signed-off-by: Pavan Ni