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

2019-11-10 Thread Pavan Nikhilesh Bhagavatula
pdk.org >Subject: Re: [dpdk-dev] [PATCH v16 2/8] ethdev: add mbuf RSS update >as an offload > >On 11/6/2019 7:17 PM, pbhagavat...@marvell.com wrote: >> From: Pavan Nikhilesh >> >> Add new Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be >used to >> enab

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

2019-11-07 Thread Ferruh Yigit
On 11/6/2019 7:17 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

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

2019-11-06 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