Re: [vpp-dev] VPP IPsec queries

2023-03-01 Thread Zhang, Fan
Hi, You may try with vpp-swan plugin that makes Strongswan offloading IPsec to VPP and keep the IKE part to itself. The project is still not perfect but takes care of child-SA and overlapped subnet. As of ipip interface instead of ipsec interface - it is correct behavior as it allows

Re: [vpp-dev] DPDK 22.11 bump patch to review/merge

2023-02-07 Thread Zhang, Fan
Sorry forgot the patch link dpdk: bump to dpdk 22.11 (Ie120346c) · Gerrit Code Review (fd.io) <https://gerrit.fd.io/r/c/vpp/+/37840> On 2/7/2023 3:44 PM, Zhang, Fan via lists.fd.io wrote: Hi, We have DPDK 22.11 patch hanging there for a while. I remember the decision in last communit

[vpp-dev] DPDK 22.11 bump patch to review/merge

2023-02-07 Thread Zhang, Fan
Hi, We have DPDK 22.11 patch hanging there for a while. I remember the decision in last community call was not to wait DPDK 23.03 but merge this one instead. If someone can have a deeper look at it, and/or do we need some tests under CSIT first? Regards, Fan -=-=-=-=-=-=-=-=-=-=-=-

Re: [vpp-dev] [csit-dev] Bumping dpdk to 22.11 in vpp 23.02 ?

2023-01-12 Thread Zhang, Fan
Then I was an hour late :-( Thanks Dave! Where can I find the new time calendar? On 1/12/2023 3:12 PM, Dave Wallace wrote: There was a VPP Community meeting this Tuesday at the new time (5am PST) that was lightly attended. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this

Re: [vpp-dev] [csit-dev] Bumping dpdk to 22.11 in vpp 23.02 ?

2023-01-12 Thread Zhang, Fan
I agree. It is worth discussing in VPP community call if VPP should access the DPDK internal APIs - it surely leaves us more flexibility with the price of possible more maintenance effort. - BTW was there a meeting on this Tuesday? I joined 4 minutes late but nobody was there. Apart from

Re: [vpp-dev] crashing in vlib_frame_vector_byte_offset

2023-01-10 Thread Zhang, Fan
Hi, I believe you missed configuring vnet_hw_if_tx_frame_t for that frame. Regards, Fan On 1/10/2023 12:12 PM, shaligram.prakash wrote:  Hi,  I am facing a crash in the below code. It's 12 worker/1 core setup. we are using bit old VPP - 20.09. function under suspect is ---

Re: [vpp-dev] Slow VPP performance vs. DPDK l2fwd / l3wfd

2023-01-06 Thread Zhang, Fan
Original Message- From:vpp-dev@lists.fd.io On Behalf Of Zhang, Fan Sent: Friday, January 6, 2023 16:04 To:vpp-dev@lists.fd.io Subject: Re: [vpp-dev] Slow VPP performance vs. DPDK l2fwd / l3wfd There was a change in DPDK 21.11 to impact no-multi-seg options for VPP. In VPP's DPDK RX, the origina

Re: [vpp-dev] Support for VPP compilation in offline mode

2023-01-04 Thread Zhang, Fan
Hi Chinmaya, In VPP's Makefile (vpp/Makefile at master · FDio/vpp · GitHub ) line 65 to 182 contains the necessary packages to be installed for compiling vpp (depends on your OS). You may  install these packages on your host manually before

Re: [vpp-dev] Exclude a rx-queue from RSS #vpp_qos #dpdk

2022-12-06 Thread Zhang, Fan
Adding Kai Ji to see if he could help. Thanks Kai's help in advance. On 12/6/2022 9:13 AM, ltham...@usc.edu wrote: Once I enable a flow on an interface to redirect certain packets to queue 0, I don't want other packets to use this queue 0. This can be done by disabling RSS for queue 0. I am

Re: [vpp-dev] Exclude a rx-queue from RSS #dpdk #vpp #vpp_qos

2022-12-05 Thread Zhang, Fan
Hi, vpp/flow_cli.c at master · FDio/vpp · GitHub contains some useful information to add a flow to redirect to queue X (check out test_flow() function's redirect_to_queue option, or vl_api_flow_enable_t_handler if you are