Re: [vpp-dev] Sigabrt in tcp46_input_inline for tcp_lookup_is_valid

2023-03-21 Thread Florin Coras
Hi Zhang, Awesome! Thanks! Regards, Florin > On Mar 21, 2023, at 7:41 PM, Zhang Dongya wrote: > > Hi Florin, > > Thanks a lot, the previous patch and with reset disabled have been running 1 > day without issue. > > I will enable reset and with your new patch, will provide feedback later.

[vpp-dev] VNET Device Drivers; increased memory footprint for af_packet v3

2023-03-21 Thread Laszlo Király
Hello fellow VPP developers! I experienced an increase in memory allocation related to af_packet v3. VPP is built from source from git version: e416893a5. The AF_PACKET interface is created by the go bin-api call AfPacketCreateV3 (invoking af_packet_create_v3 api call in VPP). The amount of

Re: [vpp-dev] #vnet A bug which may cause assertion error in vnet/session

2023-03-21 Thread Chen Weihao
Thank you for your reply. I tried to change num-tx-queues from 2 to 5, but it got a SIGSEGV, the backtrace is: #0  0x7fffb453ff89 in rte_write32_relaxed (addr=0x80007ef0, value=0) at ../src-dpdk/lib/eal/include/generic/rte_io.h:310 #1  rte_write32 (addr=0x80007ef0, value=0) at

Re: [vpp-dev] VNET Device Drivers; increased memory footprint for af_packet v3

2023-03-21 Thread Laszlo Király
Hi, Excuse me for the misunderstanding. Most probably this is not an issue in VPP. In the mentioned 'previous version of vpp (git version 45207e0fb2) the af_packet_create_v2 api was used, so the memory increase is expected. So, the question had lapsed. /Laszlo

Re: [vpp-dev] Sigabrt in tcp46_input_inline for tcp_lookup_is_valid

2023-03-21 Thread Florin Coras
Hi, Okay, resetting of half-opens definitely not supported. I updated the patch to just clean them up on forced reset, without sending a reset to make sure session lookup table cleanup still happens. Regards, Florin > On Mar 20, 2023, at 9:13 PM, Zhang Dongya wrote: > > Hi, > > After

Re: [vpp-dev] #vnet A bug which may cause assertion error in vnet/session

2023-03-21 Thread Florin Coras
Hi, The problem seems to be that you’re using a vmxnet3 interface, so I suspect this might be a vm configuration issue. Your current config should work but could end up being inefficient. With respect to your problem, I just built redis and ran redis-server and cli over LDP. Everything

Re: [vpp-dev] Sigabrt in tcp46_input_inline for tcp_lookup_is_valid

2023-03-21 Thread Zhang Dongya
Hi Florin, Thanks a lot, the previous patch and with reset disabled have been running 1 day without issue. I will enable reset and with your new patch, will provide feedback later. Florin Coras 于2023年3月22日周三 02:12写道: > Hi, > > Okay, resetting of half-opens definitely not supported. I updated