Re: [vpp-dev] how to enable dpdk log

2018-10-01 Thread Eason Chen
Thank you Damjan! -- Sender:Damjan Marion via Lists.Fd.Io Sent at:2018 Oct 2 (Tue) 05:00 To:Eason Chen Cc:vpp-dev Subject:Re: [vpp-dev] how to enable dpdk log On 29 Sep 2018, at 02:53, Eason Chen wrote: Hi, I am trying to

[vpp-dev] how to enable dpdk log

2018-09-28 Thread Eason Chen
Hi, I am trying to open dpdk log (based on VPP upstream code), but I cannot see any dpdk log output in /var/log/vpp/vpp.log after adding "log-level debug" in dpdk section of startup.conf. Thanks, Eason-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online

Re: [vpp-dev] vlib_buffer_t clone operation

2018-09-03 Thread Eason Chen
vlib_buffer_clone() it’s use in IP multicast can be found here: replicate_inline (…) and in L2 multicast here: l2flood_node_fn(…) /neale -Original Message- From: on behalf of Eason Chen Reply-To: Eason Chen Date: Monday, 3 September 2018 at 04:12 To: vpp-dev Subject: [vpp-dev] vlib_buffer_t

[vpp-dev] vlib_buffer_t clone operation

2018-09-02 Thread Eason Chen
Hi VPP Gurus, I am trying to deep dive vlib_buffer_t operations but cannot find a clone operation, could anyone elaborate this the reason why clone is not supported or I missed anything obvious? My assumption is that there should be some use cases for a packet clone, e.g. multicast... Thanks,