Re: [PATCH dpdk v2 04/16] net: use ipv6 structure for header addresses

2024-10-06 Thread Ferruh Yigit
On 10/4/2024 9:04 PM, Robin Jarry wrote: > Ferruh Yigit, Oct 04, 2024 at 20:01: >> On 10/1/2024 9:17 AM, Robin Jarry wrote: >>> @@ -918,12 +918,14 @@ static struct chrte_fparse parseitem[] = { >>> .fptr  = ch_rte_parsetype_ipv6, >>> .dmask = &(const struct rte_flow_item_ipv6) { >>

Re: [PATCH dpdk v2 04/16] net: use ipv6 structure for header addresses

2024-10-04 Thread Robin Jarry
Ferruh Yigit, Oct 04, 2024 at 20:01: On 10/1/2024 9:17 AM, Robin Jarry wrote: @@ -918,12 +918,14 @@ static struct chrte_fparse parseitem[] = { .fptr = ch_rte_parsetype_ipv6, .dmask = &(const struct rte_flow_item_ipv6) { .hdr = { -

Re: [PATCH dpdk v2 04/16] net: use ipv6 structure for header addresses

2024-10-04 Thread Ferruh Yigit
On 10/1/2024 9:17 AM, Robin Jarry wrote: > @@ -918,12 +918,14 @@ static struct chrte_fparse parseitem[] = { > .fptr = ch_rte_parsetype_ipv6, > .dmask = &(const struct rte_flow_item_ipv6) { > .hdr = { > - .src_addr = > +

Re: [PATCH dpdk v2 04/16] net: use ipv6 structure for header addresses

2024-10-03 Thread Stephen Hemminger
On Tue, 1 Oct 2024 10:17:16 +0200 Robin Jarry wrote: > diff --git a/app/test/packet_burst_generator.c > b/app/test/packet_burst_generator.c > index 2cd34abc1a65..76a409a56452 100644 > --- a/app/test/packet_burst_generator.c > +++ b/app/test/packet_burst_generator.c > @@ -149,8 +149,8 @@ initial

[PATCH dpdk v2 04/16] net: use ipv6 structure for header addresses

2024-10-01 Thread Robin Jarry
The rte_ipv6_hdr uses ad-hoc uint8_t[16] arrays to represent addresses. Replace these arrays with the previously introduced rte_ipv6_addr structure. Adapt all code accordingly. Signed-off-by: Robin Jarry --- Notes: v2: updated changelog for 24.11 app/test-flow-perf/items_gen.c |