Re: [PATCH 10/11] ethdev: fix repeated word in comment

2022-07-24 Thread Thomas Monjalon
22/07/2022 23:41, Stephen Hemminger: > Replace 'of of' > > Signed-off-by: Stephen Hemminger > --- > lib/ethdev/rte_ethdev.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h > index de9e970d4d11..701eac328fe6 100644 > ---

[PATCH] net/ice: support represented port flow action

2022-07-24 Thread zhichaox . zeng
From: Zhichao Zeng Add support for action REPRESENTED_PORT in DCF. Supposed to send matching traffic to the entity (VF) represented by the given ethdev, at embedded switch level. Signed-off-by: Zhichao Zeng --- doc/guides/nics/features/ice.ini| 1 + drivers/net/ice/ice_switch_filter.c | 2

[PATCH] net/ice: support disabling ACL engine in DCF via devargs

2022-07-24 Thread zhichaox . zeng
From: Zhichao Zeng Support disabling DCF ACL engine via devarg "acl=off" in cmdline, aiming to shorten the DCF startup time. Signed-off-by: Zhichao Zeng --- drivers/net/ice/ice_dcf_ethdev.c | 58 +++--- drivers/net/ice/ice_dcf_ethdev.h | 6 drivers/net/ice/ice

答复: [PATCH] net/iavf: eth pattern support smac and dmac match

2022-07-24 Thread Dexia Li
Hi Zhang Qi, When I test ovs parial offload using iavf, then found it can not offloaded. Ovs flow like this: ovs-ofctl add-flow br-int in_port=1,dl_type=0x0800,dl_dst=52:51:00:00:00:21,action=output:2 I use ice 1.6.7 Pf driver. After modified this code, this flow c

[Bug 1058] Mellanox mlx5_pmd is reporting incorrect number of maximum rx and tx queues supported from rte_eth_dev_info_get

2022-07-24 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1058 Bug ID: 1058 Summary: Mellanox mlx5_pmd is reporting incorrect number of maximum rx and tx queues supported from rte_eth_dev_info_get Product: DPDK Version: 21.11

RE: [RFC v2] non-temporal memcpy

2022-07-24 Thread Honnappa Nagarahalli
> > 22/07/2022 11:44, Morten Brørup пишет: > >> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > >> Sent: Friday, 22 July 2022 01.20 > >> > >> Hi Morten, > >> > >>> This RFC proposes a set of functions optimized for non-temporal > >> memory copy. > >>> > >>> At this stage, I am

RE: [PATCH] net/iavf: eth pattern support smac and dmac match

2022-07-24 Thread Zhang, Qi Z
> -Original Message- > From: Dexia Li > Sent: Sunday, July 24, 2022 11:08 PM > To: dev@dpdk.org > Cc: Dexia Li > Subject: [PATCH] net/iavf: eth pattern support smac and dmac match > > Position src and dst mac bit in iavf fdir eth inset, thus eth pattern can > support > src and dst mac

RE: [RFC v2] non-temporal memcpy

2022-07-24 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > Sent: Sunday, 24 July 2022 15.35 > > 22/07/2022 11:44, Morten Brørup пишет: > >> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > >> Sent: Friday, 22 July 2022 01.20 > >> > >> Hi Morten, > >> > >>> This RFC prop

[PATCH] net/iavf: eth pattern support smac and dmac match

2022-07-24 Thread Dexia Li
Position src and dst mac bit in iavf fdir eth inset, thus eth pattern can support src and dst mac match. Signed-off-by: Dexia Li --- drivers/net/iavf/iavf_fdir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/iavf/iavf_fdir.c b/drivers/net/iavf/iavf_fdir.c index

Re: [RFC v2] non-temporal memcpy

2022-07-24 Thread Konstantin Ananyev
22/07/2022 11:44, Morten Brørup пишет: From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] Sent: Friday, 22 July 2022 01.20 Hi Morten, This RFC proposes a set of functions optimized for non-temporal memory copy. At this stage, I am asking for feedback on the concept. Applicati

[PATCH v6] ip_frag: add IPv4 fragment copy packet API

2022-07-24 Thread Huichao Cai
Some NIC drivers support MBUF_FAST_FREE(Device supports optimization for fast release of mbufs. When set application must guarantee that per-queue all mbufs comes from the same mempool,has refcnt = 1,direct and non-segmented.)offload. In order to adapt to this offload function, add this API. Add so