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

2019-08-27 Thread Andrew Rybchenko
On 8/23/19 4:19 AM, Stephen Hemminger wrote: On Thu, 22 Aug 2019 02:17:50 +0530 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 appl

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

2019-08-24 Thread Stephen Hemminger
On Thu, 22 Aug 2019 02:17:50 +0530 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

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

2019-08-23 Thread Andrew Rybchenko
On 8/21/19 11:47 PM, 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 v2 2/7] ethdev: add mbuf RSS update as an offload

2019-08-21 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