Re: [vpp-dev] Calling functions across plugins

2019-02-28 Thread satish . gundu
Thanks Dave for the quick inputs. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#12402): https://lists.fd.io/g/vpp-dev/message/12402 Mute This Topic: https://lists.fd.io/mt/30164897/21656 Group Owner: vpp-dev+ow...@lists.fd.io Unsubscribe:

Re: [vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread Andrew Yourtchenko
Congratulations Paul!! --a > On 28 Feb 2019, at 18:37, Dave Barach via Lists.Fd.Io > wrote: > > Please join me in congratulating Paul on his election as a vpp project > committer! > > Thanks... Dave > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > >

[vpp-dev] Can I increase vlib_buffer->opaque[10]?

2019-02-28 Thread Gudimetla, Leela Sankar
Hello, I have a need to add some custom fields to the existing vlib_buffer metadata space i.e. opaque[10]. The new field is related to L2, so it makes logically sense to add it to the l2 structure in vnet_buffer_opaque_t. But it does not fit into the current real estate i.e. opaque[10]. So, I

Re: [vpp-dev] VPP - ixia tests failing

2019-02-28 Thread carlito nueno
Ethernet hardware: Ethernet controller: Intel Corporation I211 Gigabit Network Connection (rev 03) I ran a few tests using iperf3, between: macbook pro: 10.155.3.21 <--> connected to vpp port 10.155.3.1 Windows: 10.155.6.111 <--> connected to vpp port 10.155.6.1 Ping works from macbook to

Re: [vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread Naveen Joy via Lists.Fd.Io
Congrats Paul! Looking forward to working together. Naveen From: on behalf of "Dave Barach via Lists.Fd.Io" Reply-To: "Dave Barach (dbarach)" Date: Thursday, February 28, 2019 at 2:37 PM To: "vpp-dev@lists.fd.io" , Paul Vinciguerra Cc: "vpp-dev@lists.fd.io" Subject: [vpp-dev] New vpp

Re: [vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread Dave Wallace
Congratulations Paul! -daw- On 2/28/2019 5:37 PM, Dave Barach via Lists.Fd.Io wrote: Please join me in congratulating Paul on his election as a vpp project committer! Thanks... Dave -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#12394):

Re: [vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread Florin Coras
Congrats, Paul!! Florin > On Feb 28, 2019, at 2:37 PM, Dave Barach via Lists.Fd.Io > wrote: > > Please join me in congratulating Paul on his election as a vpp project > committer! > > Thanks... Dave > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > >

Re: [vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread John Lo (loj) via Lists.Fd.Io
Congratulations Paul. It is great to have you on board as one of the committers to share the load, I mean “joy” , of VPP. -John From: vpp-dev@lists.fd.io On Behalf Of Dave Barach via Lists.Fd.Io Sent: Thursday, February 28, 2019 5:38 PM To: vpp-dev@lists.fd.io; Paul Vinciguerra Cc:

[vpp-dev] New vpp project committer: Paul Vinciguerra

2019-02-28 Thread Dave Barach via Lists.Fd.Io
Please join me in congratulating Paul on his election as a vpp project committer! Thanks... Dave -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#12394): https://lists.fd.io/g/vpp-dev/message/12394 Mute This Topic:

Re: [vpp-dev] VPP crashed on servers with unusual numa config

2019-02-28 Thread Damjan Marion via Lists.Fd.Io
Can you please try: https://gerrit.fd.io/r/#/c/17950/ I don't have such "special" configuration :) Thanks, Damjan > On 28 Feb 2019, at 06:31, Lijian Zhang wrote: > > Hi Maintainers, > I have two supermicro x86 servers with unusual numa configs. The first

Re: [vpp-dev] Calling functions across plugins

2019-02-28 Thread Dave Barach via Lists.Fd.Io
It’s OK to look up symbols e.g. using vlib_get_plugin_symbol(...). If the two plugins can’t operate independently of each other – even in the sense of A will work without B, but not vice-versa - you might as well combine them. HTH... Dave From: vpp-dev@lists.fd.io On Behalf Of

Re: [vpp-dev] VPP - ixia tests failing

2019-02-28 Thread carlito nueno
Hi Benoit, I had a similar issue without the AP. I connected: client (ixia) --> GigabitEthernet4/0/0.3 --> vpp --> GigabitEthernet5/0/0 (ixia) Same problem. Ixia on GigabitEthernet5/0/0 was not receiving packets. But traffic the other way was working fine. Thanks On Thu, Feb 28, 2019 at 12:49

[vpp-dev] Calling functions across plugins

2019-02-28 Thread satish . gundu
Hi VPP-Dev, I have two VPP plugins A and B. Plugin-A needs to call function in plugin-B. Currently, we are using dlopen/dlsym to get the function pointer of function-B in function-A and made it working. But is this the correct way to do it in VPP? (or) does VPP have any other standard way of

[vpp-dev] query regarding multiple client connections to vpp over shared memory

2019-02-28 Thread Alok Makhariya
Hi I am trying to connect 2 clients to vpp using vapi-connect from the same process but unable to do so. The second vapi-connect returns with an error. I wanted to have 2 connection to vpp because I intend to use the first connection for a high priority exchange of request and response messages

Re: [vpp-dev] VPP crashed on servers with unusual numa config

2019-02-28 Thread Dave Barach via Lists.Fd.Io
Note that such a NUMA config has a high probability of causing bad performance even if we [read: Damjan] change vpp to support it. Threads running on CPUs without numa-local memory will suffer greatly. It would be far better to populate [all of] the available memory channels, and declare

Re: [vpp-dev] VPP crashed on servers with unusual numa config

2019-02-28 Thread Damjan Marion via Lists.Fd.Io
Current code assumes that all numa nodes have memory present, which is reasonable assumption for any production use. It is on my todo list to improve handling of such cases, but it is not 5-minute task, so I cannot promise anything soon. Simply changing from "online" to "has_memory" will not

Re: [vpp-dev] ACL and Policier

2019-02-28 Thread Andrew Yourtchenko
Hi! No, it isn’t... --a > On 28 Feb 2019, at 02:33, mahdy.varas...@gmail.com wrote: > > Hi > > I wondered if we can use ACLs instead of classifier tables in Policies. How > is it possible? ( if it is possible) > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. >

Re: [vpp-dev] Heads up: API cleanup

2019-02-28 Thread Neale Ranns via Lists.Fd.Io
Hi, In the spirit of this work I’d like to propose a change to the route add/del APIs to make use of the fib_path structure. The fib_path structure, which describes how to deal which the matched packets, is consistent across each of the route types; IP, MPLS, BIER and ABF. By using a fib_path

Re: [vpp-dev] VPP - ixia tests failing

2019-02-28 Thread Benoit Ganne (bganne) via Lists.Fd.Io
Hi Carlito, Something looks fishy in the 1st trace (the failing one): dpdk-input advertise a 60B packet length, (which should not happen, this is too small for Ethernet anyway), and you can see the ip4-input reporting that the advertised packet length in the IP header is 768B + incorrect

Re: [vpp-dev] New vpp project committer nomination: Paul Vinciguerra

2019-02-28 Thread Neale Ranns via Lists.Fd.Io
+1. /neale De : au nom de "Dave Barach via Lists.Fd.Io" Répondre à : "Dave Barach (dbarach)" Date : mercredi 27 février 2019 à 13:38 À : "vpp-dev@lists.fd.io" Cc : "vpp-dev@lists.fd.io" Objet : [vpp-dev] New vpp project committer nomination: Paul Vinciguerra In view of significant code