Yes, this patchset is based on the idpf PMD code: http://patches.dpdk.org/project/dpdk/cover/20230206054618.40975-1-beilei.x...@intel.com/ http://patches.dpdk.org/project/dpdk/cover/20230106090501.9106-1-beilei.x...@intel.com/ http://patches.dpdk.org/project/dpdk/cover/20230207084549.2225214-1-wenjun1...@intel.com/ http://patches.dpdk.org/project/dpdk/cover/20230208073401.2468579-1-mingxia....@intel.com/
But as these dependency have been merged to networking.dataplane.dpdk.next-net-intel, so I delete the dependency description. If necessary , I'll send a new version. BR mingxia > -----Original Message----- > From: Ferruh Yigit <ferruh.yi...@amd.com> > Sent: Wednesday, February 15, 2023 10:05 PM > To: Liu, Mingxia <mingxia....@intel.com>; dev@dpdk.org; Xing, Beilei > <beilei.x...@intel.com>; Zhang, Yuying <yuying.zh...@intel.com> > Subject: Re: [PATCH v6 00/21] add support for cpfl PMD in DPDK > > On 2/13/2023 2:19 AM, Mingxia Liu wrote: > > The patchset introduced the cpfl (Control Plane Function Library) PMD > > for Intel® IPU E2100’s Configure Physical Function (Device ID: 0x1453) > > > > The cpfl PMD inherits all the features from idpf PMD which will follow > > an ongoing standard data plan function spec > > https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=idpf > > Besides, it will also support more device specific hardware offloading > > features from DPDK’s control path (e.g.: hairpin, rte_flow …). which > > is different from idpf PMD, and that's why we need a new cpfl PMD. > > > > This patchset mainly focuses on idpf PMD’s equivalent features. > > To avoid duplicated code, the patchset depends on below patchsets > > which move the common part from net/idpf into common/idpf as a shared > library. > > > > v2 changes: > > - rebase to the new baseline. > > - Fix rss lut config issue. > > v3 changes: > > - rebase to the new baseline. > > v4 changes: > > - Resend v3. No code changed. > > v5 changes: > > - rebase to the new baseline. > > - optimize some code > > - give "not supported" tips when user want to config rss hash type > > - if stats reset fails at initialization time, don't rollback, just > > print ERROR info > > v6 changes: > > - for small fixed size structure, change rte_memcpy to memcpy() > > - fix compilation for AVX512DQ > > - update cpfl maintainers > > > > Mingxia Liu (21): > > net/cpfl: support device initialization > > net/cpfl: add Tx queue setup > > net/cpfl: add Rx queue setup > > net/cpfl: support device start and stop > > net/cpfl: support queue start > > net/cpfl: support queue stop > > net/cpfl: support queue release > > net/cpfl: support MTU configuration > > net/cpfl: support basic Rx data path > > net/cpfl: support basic Tx data path > > net/cpfl: support write back based on ITR expire > > net/cpfl: support RSS > > net/cpfl: support Rx offloading > > net/cpfl: support Tx offloading > > net/cpfl: add AVX512 data path for single queue model > > net/cpfl: support timestamp offload > > net/cpfl: add AVX512 data path for split queue model > > net/cpfl: add HW statistics > > net/cpfl: add RSS set/get ops > > net/cpfl: support scalar scatter Rx datapath for single queue model > > net/cpfl: add xstats ops > > Hi Mingxia, Beilei, > > Is there any missing dependency at this point?