Re: COMMERCIAL BULK: Re: [E] COMMERCIAL BULK: [vpp-dev] TLS app stuck after burst of traffic #vpp-hoststack

2023-03-07 Thread Kevin Yan via lists.fd.io
rsists. Regards, Florin On Mar 6, 2023, at 5:42 PM, Kevin Yan via lists.fd.io mailto:kevin.yan=mavenir@lists.fd.io>> wrote: Hi @Olivia Dunham<mailto:theoliviadun...@gmail.com>, Recently I met the exact same issue, TLS TX svm fifo gets full after burst of traffic

Re: [E] COMMERCIAL BULK: [vpp-dev] TLS app stuck after burst of traffic #vpp-hoststack

2023-03-06 Thread Kevin Yan via lists.fd.io
Hi @Olivia Dunham, Recently I met the exact same issue, TLS TX svm fifo gets full after burst of traffic and it will never resume, meanwhile, TCP TX svm fifo is empty at that time I’m using VPP20.09, I believe there is some issue in TLS layer, s

Re: [E] COMMERCIAL BULK: Re: [vpp-dev] Issues with failsafe dpdk pmd in Azure

2022-12-02 Thread Kevin Yan via lists.fd.io
: vpp-dev@lists.fd.io On Behalf Of Kevin Yan via lists.fd.io Sent: Friday, December 2, 2022 4:39 PM To: Peter Morrow ; Stephen Hemminger Cc: vpp-dev@lists.fd.io; Long Li Subject: COMMERCIAL BULK: Re: [E] COMMERCIAL BULK: Re: [vpp-dev] Issues with failsafe dpdk pmd in Azure [EXTERNAL EMAIL] DO

Re: [E] COMMERCIAL BULK: Re: [vpp-dev] Issues with failsafe dpdk pmd in Azure

2022-12-02 Thread Kevin Yan via lists.fd.io
Hi Peter, Stephen and Long, I am facing some issues when running VPP on Azure VM, can you please help and give some suggestion if possible. I'm running CentOS 7.9 with kernel version 3.10.0 on Azure VM, VPP version is 20.09 and DPDK version is 20.11, below is the sna

Re: [E] Re: [vpp-dev] VPP deadlock issue

2022-04-07 Thread Kevin Yan via lists.fd.io
Coras Sent: Friday, April 8, 2022 10:00 AM To: Kevin Yan Cc: vpp-dev@lists.fd.io; Alan Wang Subject: [E] Re: [vpp-dev] VPP deadlock issue Email is from a Free Mail Service (Gmail/Yahoo/Hotmail….) : Beware of Phishing Scams, Report questionable emails to s...@mavenir.com<mailt

[vpp-dev] VPP deadlock issue

2022-04-07 Thread Kevin Yan via lists.fd.io
Hi, Recently I got a VPP crash issue, one worker thread is doing mutex lock and waiting for getting the mutex, the complete call stack is arp_learn-> vnet_arp_set_ip4_over_ethernet-> vl_api_rpc_call_main_thread-> vl_msg_api_alloc_as_if_client-> vl_msg_api_alloc_internal-> pthread_m

[vpp-dev] some questions about libmemif

2019-10-18 Thread Kevin Yan via Lists.Fd.Io
Hi all, Recently I am reading codes of libmemlif (based on vpp19.01) ,I am a little bit confused about the fields of head/tail in struct memif_ring_t and last_head/last_tail in struct memif_queue_t. Can anybody help to clarify the internal mechanism of the read

Re: [E] Re: [vpp-dev] vip in VPP

2019-05-15 Thread Kevin Yan via Lists.Fd.Io
Hi Shahid, Actually I have the same requirement that two IPs from same subnet configured on one interface and I tried to configure that way but it failed, vpp will complain as bellows [cid:image001.png@01D50BC7.7BED62D0] https://gerrit.fd.io/r/#/c/8057/ this patch did the check and disable overla

Re: [E] Re: [vpp-dev] question related to VPP statistics

2018-11-26 Thread Kevin Yan
Thanks very much , I will check the new stat mechanism! -Original Message- From: Ole Troan [mailto:otr...@employees.org] Sent: Tuesday, November 27, 2018 12:45 AM To: Vratko Polak -X (vrpolak - PANTHEON TECHNOLOGIES at Cisco) Cc: Kevin Yan ; vpp-dev@lists.fd.io Subject: [E] Re: [vpp-dev

[vpp-dev] vppctl issue

2018-11-07 Thread Kevin Yan
Hello, Does anyone met below errors when using vppctl and what is the possible reason? clib_socket_init: connect (fd 3, '/run/vpp/cli.sock'): Connection refused BTW, I changed a little vpp code but I suppose it doesn't not related to this issue and VPP itself is started without any prob

Re: [E] [vpp-dev] VPPSB Netlink build failing

2018-11-02 Thread Kevin Yan
..@xflowresearch.com] Sent: Friday, November 02, 2018 3:17 PM To: Kevin Yan ; vpp-dev@lists.fd.io Subject: RE: [E] [vpp-dev] VPPSB Netlink build failing Yes, did that and its compiling. Thanks. One question, after the build is completed, how do I install it to my system? I can see the install di

Re: [E] [vpp-dev] VPPSB Netlink build failing

2018-11-02 Thread Kevin Yan
And also remove else if (r->rtm.rtm_family == AF_MPLS) part From: Kevin Yan Sent: Friday, November 02, 2018 3:15 PM To: 'alp.ars...@xflowresearch.com' ; vpp-dev@lists.fd.io Subject: RE: [E] [vpp-dev] VPPSB Netlink build failing for(int i = 1; label != 0; i++) change to : int

Re: [E] [vpp-dev] VPPSB Netlink build failing

2018-11-02 Thread Kevin Yan
for(int i = 1; label != 0; i++) change to : int I; for(i = 1; label != 0; i++) From: alp.ars...@xflowresearch.com [mailto:alp.ars...@xflowresearch.com] Sent: Friday, November 02, 2018 3:11 PM To: Kevin Yan ; vpp-dev@lists.fd.io Subject: RE: [E] [vpp-dev] VPPSB Netlink build failing Tried

Re: [E] [vpp-dev] VPPSB Netlink build failing

2018-11-01 Thread Kevin Yan
I also met this error when compiling vppsb on centos, just remove the MPLS related macro,and re-compile From: vpp-dev@lists.fd.io [mailto:vpp-dev@lists.fd.io] On Behalf Of alp.ars...@xflowresearch.com Sent: Friday, November 02, 2018 1:55 PM To: vpp-dev@lists.fd.io Subject: [E] [vpp-dev] VPPSB Ne

[vpp-dev] question related to VPP statistics

2018-11-01 Thread Kevin Yan
Hello VPP experts, We are designing an application mainly acting as a SeGW, VPP is used as fast-path, we have a slow-path application called ipsecAgent to manage ipsec tunnels. ipsecAgent need to get the ipsec tunnel statistics from VPP to trigger some features, such as , Re-key when pac

Re: [E] [vpp-dev] Build a telecom-class Security gateway device with VPP

2018-09-18 Thread Kevin Yan
Hi Tianye, I suppose VPP is a good choice acting as a fast-path, free and efficient. And I think most of the requirements listed in your mail are supported by native VPP. From: vpp-dev@lists.fd.io [mailto:vpp-dev@lists.fd.io] On Behalf Of Tian Ye2(田野) Sent: Monday, September 17, 2018

[vpp-dev] vpp api test issue

2018-09-09 Thread Kevin Yan
Hi , I started to learn VPP recently and I am trying to write a control plane application to start and configure vpp automatilly, so firstly I tried to compile test_client.c and run it , some commands are good , but some are not well worked. For example, if I type 'L' which is us