Re: [dpdk-dev] [PATCH v2 1/7] net/mlx5: rename confusing object in probe code

2018-06-16 Thread Xueming(Steven) Li
> -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 1/7] net/mlx5: rename confusing object in probe > code > > There are several attribute objects in this function:

Re: [dpdk-dev] [PATCH v2 2/7] net/mlx5: remove redundant objects in probe code

2018-06-16 Thread Xueming(Steven) Li
> -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 2/7] net/mlx5: remove redundant objects in > probe code > > This patch gets rid of redundant calls to open the

Re: [dpdk-dev] [PATCH v2 3/7] net/mlx5: split PCI from generic probing code

2018-06-16 Thread Xueming(Steven) Li
Reviewed-by: Xueming Li > -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 3/7] net/mlx5: split PCI from generic probing > code > > All the generic probing code n

Re: [dpdk-dev] [PATCH v2 5/7] net/mlx5: add port representor awareness

2018-06-16 Thread Xueming(Steven) Li
Reviewed-by: Xueming Li One minor issue we should be able to ignore. > -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 5/7] net/mlx5: add port representor awarene

Re: [dpdk-dev] [PATCH v2 6/7] net/mlx5: probe all port representors

2018-06-16 Thread Xueming(Steven) Li
Reviewed-by: Xueming Li Minor comments inside: > -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 6/7] net/mlx5: probe all port representors > > Probe existing po

Re: [dpdk-dev] [PATCH v2 7/7] net/mlx5: add parameter for port representors

2018-06-16 Thread Xueming(Steven) Li
Reviewed-by: Xueming Li > -Original Message- > From: dev On Behalf Of Adrien Mazarguil > Sent: Thursday, June 14, 2018 4:35 PM > To: Shahaf Shuler > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 7/7] net/mlx5: add parameter for port > representors > > Prior to this patch, all port

Re: [dpdk-dev] [PATCH 2/3] app/testpmd: enable UDP GSO in the checksum forwarding engine

2018-06-16 Thread Hu, Jiayu
Hi Bernard, > -Original Message- > From: Iremonger, Bernard > Sent: Thursday, June 14, 2018 10:44 PM > To: Hu, Jiayu ; dev@dpdk.org > Cc: Ananyev, Konstantin ; Hu, Jiayu > > Subject: RE: [dpdk-dev] [PATCH 2/3] app/testpmd: enable UDP GSO in the > checksum forwarding engine > > Hi Jiayu,

Re: [dpdk-dev] [PATCH] net/bonding: fix link properties with autoneg

2018-06-16 Thread Chas Williams
On Thu, Jun 14, 2018 at 1:04 PM Ferruh Yigit wrote: > On 4/16/2018 8:09 PM, Matan Azrad wrote: > > Hi Chas > > > > From: Chas Williams, Monday, April 16, 2018 7:44 PM > >> On Mon, Apr 16, 2018 at 4:06 AM, Matan Azrad > >> wrote: > >>> Hi Chas > >>> > >>> From: Chas Williams, Wednesday, February

Re: [dpdk-dev] [PATCH v2] net/pcap: rx_iface_in stream type support

2018-06-16 Thread Ido Goshen
Is pcap_sendpacket() to the same pcap_t handle thread-safe? I couldn't find clear answer so I'd rather assume not. If it's not thread-safe then supporting multiple "iface"'s will require multiple pcap_open_live()'s and we are back in the same place. >> I am not sure exiting behavior is intention

[dpdk-dev] [PATCH 2/2] net/pcap: duplicate code consolidation

2018-06-16 Thread ido goshen
Signed-off-by: ido goshen --- drivers/net/pcap/rte_eth_pcap.c | 58 - 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers/net/pcap/rte_eth_pcap.c index 444abbb..e63998b 100644 --- a/drivers/net/pcap/rte_

[dpdk-dev] [PATCH 1/2] net/pcap: multiple queues fix

2018-06-16 Thread ido goshen
Change open_rx/tx_pcap/iface functions to open only a single pcap/dumper and not loop num_of_queue times The num_of_queue loop is already acheived by the caller rte_kvargs_process Fixes: 1. Opens N requested pcaps/dumpers instead of N^2 2. Leak of pcap/dumper's which are being overwritten by th

[dpdk-dev] [PATCH v2 0/3] Support UDP/IPv4 GSO

2018-06-16 Thread Jiayu Hu
With the support of UDP Fragmentation Offload (UFO) and TCP Segmentation Offload (TSO) in virtio, VMs can exchange large UDP and TCP packets exceeding MTU between each other, which can greatly reduce per-packet processing overheads. When the destination of the large TCP and UDP packets is crossing

[dpdk-dev] [PATCH v2 1/3] gso: support UDP/IPv4 fragmentation

2018-06-16 Thread Jiayu Hu
This patch adds GSO support for UDP/IPv4 packets. Supported packets may include a single VLAN tag. UDP/IPv4 GSO doesn't check if input packets have correct checksums, and doesn't update checksums for output packets (the responsibility for this lies with the application). Additionally, UDP/IPv4 GSO

[dpdk-dev] [PATCH v2 3/3] gso: update documents for UDP/IPv4 GSO

2018-06-16 Thread Jiayu Hu
This patch updates the programmer guide and testpmd user guide for UDP/IPv4 GSO. Signed-off-by: Jiayu Hu --- doc/guides/prog_guide/generic_segmentation_offload_lib.rst | 6 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst| 6 ++ 2 files changed, 12 insertions(+) diff --git

[dpdk-dev] [PATCH v2 2/3] app/testpmd: enable UDP GSO in csum engine

2018-06-16 Thread Jiayu Hu
This patch enables GSO for UDP/IPv4 packets. Oversized UDP/IPv4 packets transmitted over a GSO-enabled port will undergo segmentation. Signed-off-by: Jiayu Hu --- app/test-pmd/cmdline.c | 5 +++-- app/test-pmd/csumonly.c | 2 ++ app/test-pmd/testpmd.c | 2 +- 3 files changed, 6 insertions(+),