Re: [vpp-dev] VPP committers: VPP PTL vote

2020-09-27 Thread Mohanty, Chandan (Nokia - IN/Bangalore)
+1 From: vpp-dev@lists.fd.io On Behalf Of Dave Barach via lists.fd.io Sent: Saturday, September 26, 2020 12:44 AM To: vpp-committ...@lists.fd.io Cc: vpp-dev@lists.fd.io Subject: [vpp-dev] VPP committers: VPP PTL vote Folks, The self-nomination period closed yesterday. We had one self-nominatio

[vpp-dev] What is the relationship between "struct vlib_frame_t" , "struct vlib_pending_frame_t" and "struct vlib_next_frame_t"? #vpp-dev

2021-05-11 Thread Mohanty, Chandan (Nokia - IN/Bangalore)
Hi Experts, I am new to VPP.I have gone through the Node despatcher Functionality at https://fdio-vpp.readthedocs.io/en/latest/gettingstarted/developers/vlib.html?highlight=dispatch#graph-node-dispatcher However below queries are arising. Kindly help me on clarifying those. Q1. What is the relat

[vpp-dev] What are the available atomic operations in VPP #vpp-dev #vpp #counters

2021-06-02 Thread Mohanty, Chandan (Nokia - IN/Bangalore)
Hello VPP Experts, Wanted to know, Similar to Linux, if any atomic operation is available in VPP? Intention is to use atomic operations in place of Locking. Linux: long atomic64_add_return(int i, atomic64_t *v) Atomically add i to v and return the result long atomic64_sub_return(int i, atomic64_t

Re: [vpp-dev] What are the available atomic operations in VPP #vpp-dev #vpp #counters

2021-06-05 Thread Mohanty, Chandan (Nokia - IN/Bangalore)
VPP experts, Any pointers on this will be much appreciated and help a VPP learning guy. Wanted to know, Similar to Linux, if any atomic operation is available in VPP? Intention is to use at