Re: [EXTERNAL] [vpp-dev] Coverity errors nag-o-gram

2022-01-18 Thread Chris Luke via lists.fd.io
And in case it’s not obvious, the scanning tool had a holiday hiatus, but I got it back on its feet a week or so ago. Chris. From: vpp-dev@lists.fd.io on behalf of Ole Troan Date: Tuesday, January 18, 2022 at 06:16 To: Neale Ranns , Pablo Camarillo (pcamaril) , Radu Nicolau , Steven Luong

Re: [EXTERNAL] Re: [vpp-dev] Multi-threading locks and synchronization

2021-07-13 Thread Chris Luke via lists.fd.io
Really depends on what you need it to do, which I may have missed. Why do you need any synchronization at all? Chris From: vpp-dev@lists.fd.io on behalf of satish amara Date: Monday, July 12, 2021 at 23:59 To: vpp-dev@lists.fd.io Subject: Re: [EXTERNAL] Re: [vpp-dev] Multi-threading locks

Re: [EXTERNAL] Re: [vpp-dev] Multi-threading locks and synchronization

2021-07-12 Thread Chris Luke via lists.fd.io
Grossly simplified explanation: Because of how VPP works, all packets are processed to completion on every vector (there may be exceptions, but it’s not typical, VPP really does not want to hang on to packets across cycles). Once a vector has been completed, there’s a barrier lock to allow main

Re: [EXTERNAL] Re: [vpp-dev] VPP Emacs Lisp evolution to P4

2021-05-05 Thread Chris Luke via lists.fd.io
Hi Hemant, Do you plan to open source and maintain this code generator? Chris. From: vpp-dev@lists.fd.io On Behalf Of hemant via lists.fd.io Sent: Wednesday, May 5, 2021 12:09 To: hem...@mnkcg.com; vpp-dev@lists.fd.io Subject: [EXTERNAL] Re: [vpp-dev] VPP Emacs Lisp evolution to P4 I don't

Re: [EXTERNAL] Re: [vpp-dev] vpp hang on

2021-04-08 Thread Chris Luke via lists.fd.io
As Andrew says, vppctl is not ideal for this purpose. Your GDB trace looks like it was vppctl itself, and it's stuck waiting on connect() - which means the far end, VPP, did not accept() the connection. My immediate reaction would be to check netstat to see if there's lots of old unix sockets

Re: [EXTERNAL] [vpp-dev] New Committer Proposal

2021-03-31 Thread Chris Luke via lists.fd.io
+1 -Original Message- From: vpp-dev@lists.fd.io On Behalf Of Damjan Marion via lists.fd.io Sent: Wednesday, March 31, 2021 13:58 To: vpp-dev Cc: Zhang, Roy Fan Subject: [EXTERNAL] [vpp-dev] New Committer Proposal Dear VPP Committers, I would like to propose Roy Fan Zhang from Intel

Re: [EXTERNAL] Re: [vpp-dev] Issue with cloning repo on VM

2021-02-21 Thread Chris Luke via lists.fd.io
Rajesh, It looks like a local system issue, nothing to do with git or gerrit per se. Your system is tell you it’s not letting you create that file. You should investigate that. I believe it’s out of scope for this list I’m afraid. Chris. From: vpp-dev@lists.fd.io On Behalf Of Rajesh Dawadi

Re: [EXTERNAL] [vpp-dev] RFC: Enabling Gerrit Auto-Abandon job on VPP master

2021-01-27 Thread Chris Luke via lists.fd.io
+1 I used to do this manually, in effect, though I’ve been less active the past while which probably accounts for the growth! FWIW, I usually performed it on an approximate 60 day nudge and 90 day abandon, about once a month, schedule. I did similar with JIRA but less frequently. I felt the

Re: [EXTERNAL] [vpp-dev] Check running status of vpp

2020-12-16 Thread Chris Luke via lists.fd.io
It is odd that the filesystem entry for the CLI socket would exist but it says “connection refused”. Any log messages from VPP complaining about not being able to create the socket? I wonder if the filesystem entry is a remnant from a previous session that was not cleaned up. Chris. From:

Re: [EXTERNAL] Re: [vpp-dev] vppctl fails from within the application (system cmd returns 256)

2020-11-17 Thread Chris Luke via lists.fd.io
On this line in the trace: [pid 2536742] socket(AF_UNIX, SOCK_STREAM, 0) = 0 It says it’s returning file descriptor 0 for the socket. Similarly other file opens and subsequent closes are using descriptor 0. 0 is normally stdin. Are stdin & out closed? That could cause all kinds of strange

Re: [EXTERNAL] [vpp-dev] vppctl fails from within the application (system cmd returns 256)

2020-11-17 Thread Chris Luke via lists.fd.io
Is vppctl in the system path? Otherwise fully specify the path to the vppctl binary in those system calls. Chris. From: vpp-dev@lists.fd.io On Behalf Of Aniket Pugaonkar Sent: Monday, November 16, 2020 12:41 To: vpp-dev@lists.fd.io Subject: [EXTERNAL] [vpp-dev] vppctl fails from within the