[PATCH] ethdev: add template table resize API

2023-12-17 Thread Gregory Etelson
Template table creation API sets table flows capacity. If application needs more flows then the table was designed for, the following procedures must be completed: 1. Create a new template table with larger flows capacity. 2. Re-create existing flows in the new table and delete flows from the or

RE: [RFC] ethdev: introduce entropy calculation

2023-12-17 Thread Ori Kam
Hi Andrew, > -Original Message- > From: Andrew Rybchenko > Sent: Saturday, December 16, 2023 11:19 AM > > On 12/10/23 11:30, Ori Kam wrote: > > When offloading rules with the encap action, the HW may calculate entropy > based on the encap protocol. > > Each HW can implement a different a

[PATCH] net/e1000: support launchtime feature

2023-12-17 Thread Chuanyu Xue
Enable the time-based scheduled Tx of packets based on the RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP flag. The launchtime defines the packet transmission time based on PTP clock at MAC layer, which should be set to the advanced transmit descriptor. Signed-off-by: Chuanyu Xue --- drivers/net/e1000/bas

RE: [PATCH 2/3] net/nfp: fix free resource problem

2023-12-17 Thread Chaoyong He
> On 12/14/2023 10:24 AM, Chaoyong He wrote: > > From: Long Wu > > > > Set the representor array to NULL to avoid that close interface does > > not free some resource. > > > > Fixes: a135bc1644d6 ("net/nfp: fix resource leak for flower firmware") > > Cc: chaoyong...@corigine.com > > Cc: sta...@dpd

[BUG] [bonding] bonding member delete bug

2023-12-17 Thread Simon Jones
Hi all, I'm using DPDK-21.11 in ovs-dpdk. I found a "bonding member delete bug" . 1. How to reproduce ``` NOTICE: bondctl is a tool I develop, it's to control DPDK. ### step 1, Add bonding device bond0. bondctl add bond0 mode active-backup ### step 2, Add member m1 into bond0. bondctl set 000

RE: [PATCH v4 8/8] examples/l3fwd-power: update to call arg parser API

2023-12-17 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] > -Original Message- > From: Euan Bourke > Sent: Friday, December 15, 2023 10:57 PM > To: dev@dpdk.org > Cc: Euan Bourke ; David Hunt ; > Anatoly Burakov ; Tummala, Sivaprasad > > Subject: [PATCH v4 8/8] examples/l3fwd-power: update to call arg parser AP

RE: [PATCH v2 RESEND] net/ixgbe: fix memoy leak after device init failure

2023-12-17 Thread Zhang, Qi Z
> -Original Message- > From: Yunjian Wang > Sent: Monday, December 18, 2023 11:08 AM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Yang, Qiming ; > Wu, Wenjun1 ; xudin...@huawei.com; > jerry.lili...@huawei.com; Yunjian Wang ; > sta...@dpdk.org > Subject: [PATCH v2 RESEND] net/ixgbe: fix memoy

Re: [BUG] [bonding] bonding member delete bug

2023-12-17 Thread Simon Jones
Oh, it's fixed by 0911d4ec and f5e72e8e Simon Jones Simon Jones 于2023年12月18日周一 10:51写道: > Hi all, > > I'm using DPDK-21.11 in ovs-dpdk. > > I found a "bonding member delete bug" . > > 1. How to reproduce > > ``` > NOTICE: bondctl is a tool I develop, it's to control DPDK. > > ### step 1, A

[PATCH 1/6] examples/l3fwd: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Signed-off-by: Sivaprasad Tummala --- examples/l3fwd/main.c | 15

[PATCH 2/6] examples/l3fwd-power: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: f88e7c175a68 ("examples/l3fwd-power: add high/regular perf cores options") Cc: radu.nico...@intel.com Cc: sta...@dpdk.org Si

[PATCH 3/6] examples/l3fwd-graph: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: 08bd1a174461 ("examples/l3fwd-graph: add graph-based l3fwd skeleton") Cc: ndabilpu...@marvell.com Cc: sta...@dpdk.org Signed-

[PATCH 5/6] examples/qos_sched: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: de3cfa2c9823 ("sched: initial import") Cc: sta...@dpdk.org Signed-off-by: Sivaprasad Tummala --- examples/qos_sched/args.c

[PATCH 4/6] examples/ipsec-secgw: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: d299106e8e31 ("examples/ipsec-secgw: add IPsec sample application") Cc: sergio.gonzalez.mon...@intel.com Cc: sta...@dpdk.org

[PATCH 6/6] examples/vm_power_manager: fix lcore ID restriction

2023-12-17 Thread Sivaprasad Tummala
Currently the config option allows lcore IDs up to 255, irrespective of RTE_MAX_LCORES and needs to be fixed. The patch allows config options based on DPDK config. Fixes: 0e8f47491f09 ("examples/vm_power: add command to query CPU frequency") Cc: marcinx.hajkow...@intel.com Cc: sta...@dpdk.org Si