[dpdk-dev] [PATCH] i40e: i40evf link status is always down with the Intel XL710 driver

2020-05-13 Thread Scott Wasson
It is necessary to convert the link_speed, in Mbps, to the I40E_LINK_SPEED enum Fixes: 3c8c0b68b590 ("net/i40e: set speed to undefined for default case") Cc: laurent.ha...@6wind.com Bugzilla ID: 461 Signed-off-by: scott_wasson --- drivers/net/i40e/i40e_ethdev_vf.c | 25 ++

[dpdk-dev] IOVA_CONTIG flag needed in kni initialization

2020-01-30 Thread Scott Wasson
Hi,   We’re seeing an issue since upgrading to 19.08, the kni FIFO’s apparently aren’t contiguous.  From user-space’s perspective, the kni’s tx_q straddles the 2MB pageboundary at 0x17a60.  The mbuf pointers in the ring prior to this address are valid.  The tx_q’s write pointer is indicating

[dpdk-dev] [PATCH] kni: fix bug 389 - Crash in librte_kni driver due to noncontiguous pages

2020-02-10 Thread Scott Wasson
Fixes: edd2fafbc0b8 ("kni: allocate memory dynamically for each device") Cc: iryz...@nfware.com Cc: sta...@dpdk.org Signed-off-by: Scott Wasson --- lib/librte_kni/rte_kni.c | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/librte_kni/rte_k