Re: [vpp-dev] Published: FD.io CSIT-1908 Release Report

2019-09-11 Thread Tibor Frank via Lists.Fd.Io
Hi All, FD.io CSIT-1908.37 report has been published on FD.io docs site: html: https://docs.fd.io/csit/rls1908/report/ pdf: https://docs.fd.io/csit/rls1908/report/_static/archive/csit_rls1908.pdf Tibor -Original Message- From: vpp-dev@lists.fd.io On Behalf Of Maciek Konstantynowicz (

Re: [vpp-dev] FD.io Jenkins Restart

2019-09-11 Thread Vanessa Valderrama
Jenkins has been restarted and jobs have been restored. On 09/11/2019 03:11 PM, Vanessa Valderrama wrote: > We're going to terminate the two CSIT jobs. I spoke with Dave Wallace > and we felt it'd be better to terminate the jobs and restart Jenkins. > > Thank you, > Vanessa > > On 09/11/2019 02:1

Re: [vpp-dev] FD.io Jenkins Restart

2019-09-11 Thread Vanessa Valderrama
We're going to terminate the two CSIT jobs. I spoke with Dave Wallace and we felt it'd be better to terminate the jobs and restart Jenkins. Thank you, Vanessa On 09/11/2019 02:17 PM, Vanessa Valderrama wrote: > Jenkins is still in shutdown mode. We'll do the restart when these jobs > are complete

Re: [vpp-dev] Issue with DPDK 19.08 / i40e driver

2019-09-11 Thread Damjan Marion via Lists.Fd.Io
> On 11 Sep 2019, at 16:43, Mathias Raoul wrote: > > Hello, > > I have an issue with VPP and i40e driver, when I try to switch the interface > to up, the program stop with a segmentation fault. My configuration details > are below. > > It might be a compatibility issue, because the DPDK doc

Re: [vpp-dev] FD.io Jenkins Restart

2019-09-11 Thread Vanessa Valderrama
Jenkins is still in shutdown mode. We'll do the restart when these jobs are complete. https://jenkins.fd.io/job/csit-vpp-perf-verify-1908-2n-skx/124/ https://jenkins.fd.io/job/csit-vpp-perf-verify-1908-2n-skx/125/ On 09/11/2019 01:09 PM, Vanessa Valderrama wrote: > Jenkins has been placed in shut

Re: [vpp-dev] Bug in plugins/dpdk/device/init.c related to eal_init_args found using AddressSanitizer

2019-09-11 Thread Dave Wallace
Elias, Please open a Jira Ticket and push a patch with this fix. BTW, there is a macro [0] that safely adds c-string termination to a vector which I would recommend using for your fix (2). Thanks, -daw- [0] https://docs.fd.io/vpp/19.08/db/d65/vec_8h.html#a2bc43313bc727b5453c3e5d7cc57a464 O

[vpp-dev] FD.io Jenkins Restart

2019-09-11 Thread Vanessa Valderrama
Jenkins has been placed in shutdown mode in preparation for a restart. We were seeing Gateway Time-out errors on ci-management-jjb-merge jobs which has caused problems with the job configurations. I have tried to push the jobs manually but I'm getting the same errors. We are going to restart Jenk

Re: [vpp-dev] Support for shared subnet

2019-09-11 Thread Burt Silverman
Thank you, Ole. Great that you put this in the context of point to point interfaces. But I think a fundamental issue remains -- one that Dave Barach would remind me of, although I hope I do not misrepresent his question. As I see it, one line card represents a router, and it has 2 point-to-point i

[vpp-dev] Temporary CRC failures

2019-09-11 Thread Vratko Polak -X (vrpolak - PANTHEON TECHNOLOGIES at Cisco) via Lists.Fd.Io
[0] has been merged, [1] has been postponed. The VPP API CRC jobs should be reliable from now on again. Vratko. [0] https://gerrit.fd.io/r/c/vpp/+/21508 [1] https://gerrit.fd.io/r/c/vpp/+/21706 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#1

[vpp-dev] non-zero counter values in unrelated graph nodes

2019-09-11 Thread Satya Murthy
Hi , We are facing a strange issue, which we are not able to debug even after spending a good amount of time. We are seeing "show node counters" displaying very high number of values all of a sudden for few unrelated nodes like "null-node" and "vmxnet3-input". The values are also keep on changin

Re: [vpp-dev] VPP API client with no rx pthread

2019-09-11 Thread Satya Murthy
Thanks Ole for the quick response. Will got through the doc and give it a try. -- Thanks & Regards, Murthy -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13957): https://lists.fd.io/g/vpp-dev/message/13957 Mute This Topic: https://lists.fd.io/mt/34

Re: [vpp-dev] VPP API client with no rx pthread

2019-09-11 Thread Florin Coras
Hi Satya, Probably you can just replicate what the api rx-thread is doing, i.e., rx_thread_fn. In particular, take a look at vl_msg_api_queue_handler. Florin > On Sep 11, 2019, at 3:26 AM, Satya Murthy wrote: > > Hi , > > We are trying to develop a VPP API client which needs synchronous re

[vpp-dev] Bug in plugins/dpdk/device/init.c related to eal_init_args found using AddressSanitizer

2019-09-11 Thread Elias Rudberg
Hello, Thanks to the patches shared by Benoit Ganne on Monday, I was today able to use AddressSanitizer for vpp. AddressSanitizer detected a problem that I think is caused by a bug in plugins/dpdk/device/init.c related to how the conf->eal_init_args vector is manipulated in the dpdk_config functio

[vpp-dev] Issue with DPDK 19.08 / i40e driver

2019-09-11 Thread Mathias Raoul
Hello, I have an issue with VPP and i40e driver, when I try to switch the interface to up, the program stop with a segmentation fault. My configuration details are below. It might be a compatibility issue, because the DPDK documentation recommend using the firmware v7 for i40E with DPDK v19.08. B

Re: [vpp-dev] VPP API client with no rx pthread

2019-09-11 Thread Ole Troan
Hi Satya, > We are trying to develop a VPP API client which needs synchronous reply > handling. > Hence, we were thinking of NOT having a separate pthread for receiving the > response from VPP. > We are planning to use no_rx_pthread version of connect api. > > Is there any example code to recei

[vpp-dev] VPP API client with no rx pthread

2019-09-11 Thread Satya Murthy
Hi , We are trying to develop a VPP API client which needs synchronous reply handling. Hence, we were thinking of NOT having a separate pthread for receiving the response from VPP. We are planning to use no_rx_pthread version of connect api. Is there any example code to receive and handle the r

Re: [vpp-dev] I want to construct some packets to be sent by a specified thread,what can I do?

2019-09-11 Thread Christian Hopps
> On Sep 11, 2019, at 2:07 AM, wei_sky2...@163.com wrote: > > On Tue, Sep 10, 2019 at 12:44 AM, Christian Hopps wrote: > UTSL > Thank you for reply。 > In our scenario,we use the Intel ‘s DDP feature to hash different GTP > packets into different threads。And We want the GTP packets from the sam

Re: [vpp-dev] Support for shared subnet

2019-09-11 Thread Ole Troan
Hi Krishna, > Our product has multiple line cards and each line card has multiple > interfaces. We run an instance of VPP on each line card. All of these > interfaces are connected to a L2 switching network. A PE router is also > connected to this L2 network for connectivity to internet. > >