Re: [PATCH dpdk v2 03/16] net: add structure for ipv6 addresses

2024-10-04 Thread Robin Jarry
Stephen Hemminger, Oct 04, 2024 at 01:18: On Tue, 1 Oct 2024 10:17:15 +0200 Robin Jarry wrote: There is currently no structure defined for IPv6 addresses. Introduce one that is simply a uint8_t array of 16 elements without any union. The idea is to ensure this structure alignment is 1 so that

Re: [PATCH dpdk v2 03/16] net: add structure for ipv6 addresses

2024-10-03 Thread Stephen Hemminger
On Tue, 1 Oct 2024 10:17:15 +0200 Robin Jarry wrote: > There is currently no structure defined for IPv6 addresses. Introduce > one that is simply a uint8_t array of 16 elements without any union. The > idea is to ensure this structure alignment is 1 so that it can be mapped > directly on unalign

[PATCH dpdk v2 03/16] net: add structure for ipv6 addresses

2024-10-01 Thread Robin Jarry
There is currently no structure defined for IPv6 addresses. Introduce one that is simply a uint8_t array of 16 elements without any union. The idea is to ensure this structure alignment is 1 so that it can be mapped directly on unaligned packet memory. Signed-off-by: Robin Jarry --- lib/net/rte_