[dpdk-dev] [PATCH] net/ixgbe: add VLAN info in queue info msg to VF

2017-08-20 Thread Wei Dai
This patch align with PF kerenl driver version 5.1.3 to add the number of queues to transmit VLAN packets in msg of queue info to VF. If DCB is enabled, it is the number of DCB traffic classes. If DCB is not enabled and default VLAN is enabled, it is 1, For other cases, it is 0. Signed-off-by: We

[dpdk-dev] [PATCH] net/liquidio: remove FLR request to PF driver

2017-08-20 Thread Shijith Thotton
igb_uio and vfio-pci does pci reset during open and release of device. So FLR request to LiquidIO PF driver during init and close in PMD is not required. See commit b58eedfc7dd5 ("igb_uio: issue FLR during open and release of device file") Signed-off-by: Shijith Thotton --- drivers/net/liquidio

[dpdk-dev] [PATCH] vhost: added user callbacks for socket open/close

2017-08-20 Thread Dariusz Stojaczyk
When user receives destroy_device signal, he does not know *why* that event happened. He does not differ between socket shutdown and virtio processing pause. User could completely delete device during transition from BIOS to kernel, causing freeze or possibly kernel panic. Instead of changing new_d

Re: [dpdk-dev] [dpdk-stable] 16.11.3 (LTS) patches review and test

2017-08-20 Thread Yuanhan Liu
On Fri, Aug 18, 2017 at 06:29:02PM +0100, Kevin Traynor wrote: > On 08/18/2017 11:45 AM, Yuanhan Liu wrote: > > Hi all, > > > > Here is a list of patches targeted for LTS release 16.11.3. Please > > help review and test. The planned date for the final release is 30th, > > Aug. Before that, please

[dpdk-dev] [PATCH] lib/librte_jobstats: fix max_exec_time comments

2017-08-20 Thread Congwen Zhang
From: CongWen Zhang Signed-off-by: CongWen Zhang --- lib/librte_jobstats/rte_jobstats.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_jobstats/rte_jobstats.h b/lib/librte_jobstats/rte_jobstats.h index 7e76fd5..70e034c 100644 --- a/lib/librte_jobstats/rte_jobsta

[dpdk-dev] [PATCH] net/i40e: fix packet count for PF

2017-08-20 Thread Qi Zhang
Previously, for PF statistics we use VSI register for packet count but use port's register for packet bytes, that cause inconsistent situation of PF statistics when some VF is active, since it will cover VF's packet bytes but not packet count. The patch will take port register for PF packet count