[vpp-dev] mpls tunnel in l2 mode del error

2017-12-12 Thread 薛欣颖
Hi guys, I'm testing L2VPN. After I del the mpls tunnel ,there is a 'signal SIGABRT'. My configuration and more info is shown below: configuration: create host-interface name eth2 mac 00:0c:29:0f:e2:a8 create host-interface name eth5 mac 00:0c:29:0f:e2:c6 set interface state host-eth2 up

Re: [vpp-dev] Issues with DPDK checksum with latest build

2017-12-12 Thread Keith Burns
https://gerrit.fd.io/r/9813 On Tue, Dec 12, 2017 at 10:05 AM Pradeep Patel (pradpate) < pradp...@cisco.com> wrote: > I have also seen the same issue. > > Workaround(till issue gets resolved) is to run md5sum on dpdk tar and > update the same in make file. > > vagrant@localhost:/vpp/dpdk$ md5sum

Re: [vpp-dev] Issues with DPDK checksum with latest build

2017-12-12 Thread Pradeep Patel (pradpate)
I have also seen the same issue. Workaround(till issue gets resolved) is to run md5sum on dpdk tar and update the same in make file. vagrant@localhost:/vpp/dpdk$ md5sum dpdk-17.11.tar.xz 61e79ac968343d7a4a4050dcaa2d6f36 dpdk-17.11.tar.xz and update Makefile DPDK_17.11_TARBALL_MD5_CKSUM :=

[vpp-dev] Issues with DPDK checksum with latest build

2017-12-12 Thread Keith Burns
Been seeing this since yesterday on two separate 16.04 boxes: https://gist.github.com/051cc22ca505766a37111f8fa9b24b2f I did try "wget into ~/Downloads" as suggested in a thread by Damjan but no dice. ___ vpp-dev mailing list vpp-dev@lists.fd.io

Re: [vpp-dev] how to use hc2vpp to call vpp APIs

2017-12-12 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
- vpp-dev Dear Reza, you can find user guide in our release notes: https://docs.fd.io/hc2vpp/1.18.01-SNAPSHOT/hc2vpp-parent/release-notes-aggregator/release_notes.html#_user_guide Regards, Marek From: hc2vpp-boun...@lists.fd.io [mailto:hc2vpp-boun...@lists.fd.io] On Behalf Of Marek Gradzki

Re: [vpp-dev] how to use hc2vpp to call vpp APIs

2017-12-12 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Moving again ;) From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco) Sent: 12 grudnia 2017 17:30 To: mirzaei.reza ; vpp-dev@lists.fd.io; hc2vpp-...@lists.fd.io Subject: Re:

Re: [vpp-dev] how to use hc2vpp to call vpp APIs

2017-12-12 Thread Marek Gradzki -X (mgradzki - PANTHEON TECHNOLOGIES at Cisco)
Moved to hc2vpp-dev Marek From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of mirzaei.reza Sent: 12 grudnia 2017 16:09 To: vpp-dev@lists.fd.io Subject: [vpp-dev] how to use hc2vpp to call vpp APIs Hi I have build hc2vpp according to this

[vpp-dev] VPP Release 18.01 F0 Milestone - Wed 12/20/2017

2017-12-12 Thread Dave Wallace
Folks, Please note that next Wednesday December 20, 2017 is the VPP Release 18.08 F0 Milestone after which VPP API changes will no longer be committed and only low risk changes will be merged in master. Please review the VPP 18.01 Release plan and add any features to wiki which you intend

[vpp-dev] how to use hc2vpp to call vpp APIs

2017-12-12 Thread mirzaei.reza
Hi I have build hc2vpp according to this tutorial [1], but I don't know how to use it in order to call vpp APIs. Can you guide me or help me to find a good reference? Best regards Reza Links: -- [1]

[vpp-dev] ONS CFP Open - Please propose fd.io related talks

2017-12-12 Thread Ed Warnicke
ONS will be held Mar 26-29 in Los Angeles. The CFP has opened: http://events.linuxfoundation.org/events/open-networking-summit-north-america/program/callforproposals Please propose fd.io related talks there. Ed ___ vpp-dev mailing list

Re: [vpp-dev] ACL Plugin: check for null session

2017-12-12 Thread khers
Dear Andrew This is a good explanation of how session add and delete works, I think this not a benign operation, I could produce the rare scenario you explained. I will send backtrace and other details tomorrow. On Tue, Dec 12, 2017 at 2:46 PM, Andrew  Yourtchenko wrote: >

Re: [vpp-dev] vpp api

2017-12-12 Thread Holoo Gulakh
here there is a test code (test.c) I compile it with following command: gcc client.c test.c -o test -I /usr/include/vpp_plugins -lvlibmemoryclient -lsvm -lvppinfra -lvlib -lvatplugin -lpthread -lm -lrt -ldl -lcrypto and then run it sudo ./test but it stops and does not response

Re: [vpp-dev] ACL Plugin: check for null session

2017-12-12 Thread Andrew  Yourtchenko
Dear Khers, I think you are right. Normally the entry in the session hash table is deleted before any operations with the per-worker pool, so we should not end up on that line. Also, the deletion itself usually happens as a result of the idle timeout - meaning, no packets hit the session for a

Re: [vpp-dev] vpp api

2017-12-12 Thread Klement Sekera -X (ksekera - PANTHEON TECHNOLOGIES at Cisco)
Hi, it's in src/vpp-api/client Regards, Kement > -Original Message- > From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On > Behalf Of Holoo Gulakh > Sent: Tuesday, December 12, 2017 10:49 AM > To: vpp-dev@lists.fd.io > Subject: [vpp-dev] vpp api > > Hi, > > In

[vpp-dev] vpp api

2017-12-12 Thread Holoo Gulakh
Hi, In order to use VPP API in python, I use this command "sudo –E LD_LIBRARY_PATH=/vpp/build-root/install-vpp_debug-native/vpp/lib64/libvppapiclient.so python testAPI.py" As you can see in the above command, I should link libvppapiclient.so to my code *** My question is that "where is the