[dpdk-dev] [PATCH v2] fm10k: set packet type for multi-segment packets

2016-04-18 Thread Michael Frasca
is not set. Fixes: fe65e1e1ce61 ("fm10k: add vector scatter Rx") Signed-off-by: Michael Frasca --- v2: - Only copy hash, ol_flags, and packet_type to 'start' when RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE is defined. drivers/net/fm10k/fm10k_rxtx_vec.c | 3 +++ 1 file changed, 3 insertion

[dpdk-dev] [PATCH] fm10k: set packet type for multi-segment packets

2016-04-18 Thread Michael Frasca
Hi Mark, Not a problem. I?ll post a v2 change with check for RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE. Thanks, Michael > On Apr 18, 2016, at 4:40 AM, Chen, Jing D wrote: > > Hi, Frasca, > >> -Original Message- >> From: Michael Frasca [mailto:michael.frasca at ora

[dpdk-dev] [PATCH] fm10k: set packet type for multi-segment packets

2016-04-14 Thread Michael Frasca
When building a chain of mbufs for a multi-segment packet, the packet_type field resides at the end of the chain. It should be copied forward to the head of the list. Fixes: fe65e1e1ce61 ("fm10k: add vector scatter Rx") Signed-off-by: Michael Frasca --- drivers/net/fm10k/fm10k_rxtx

[dpdk-dev] [PATCH] fm10k: conditionally disable RSS during device initialization

2016-03-24 Thread Michael Frasca
, Mike > On Mar 24, 2016, at 2:40 AM, Chen, Jing D wrote: > > Hi, Frasca, > > > >> -Original Message- >> From: Michael Frasca [mailto:michael.frasca at oracle.com >> <mailto:michael.frasca at oracle.com>] >> Sent: Wednesday, March

[dpdk-dev] [PATCH] fm10k: conditionally disable RSS during device initialization

2016-03-23 Thread Michael Frasca
to properly manipulate RSS? Thanks, Mike > On Mar 22, 2016, at 11:14 PM, Chen, Jing D wrote: > > Hi, > >> -Original Message- >> From: Michael Frasca [mailto:michael.frasca at oracle.com] >> Sent: Wednesday, March 23, 2016 12:58 AM >> To: Chen, Ji

[dpdk-dev] [PATCH] fm10k: conditionally disable RSS during device initialization

2016-03-22 Thread Michael Frasca
If the provided configuration does not call for RSS, then RSS is explicitly disabled. Without this change, the device continues to operate under the previous RSS configuration. Fixes: 57033cdf8fdc ("fm10k: add PF RSS") Signed-off-by: Michael Frasca --- drivers/net/fm10k/fm10k_et