Re: [PATCH] net/mvpp2: fix build with IPv6 address structure

2024-10-18 Thread Thomas Monjalon
18/10/2024 22:11, Thomas Monjalon: > A structure has been created for IPv6 addresses > replacing the byte arrays of the IPv6 header. > > This change was failing the compilation: > mrvl_flow.c:1055:29: error: incompatible type for argument 1 of 'memcmp' > > Instead of adapting the memcmp call, a n

[PATCH] net/mvpp2: fix build with IPv6 address structure

2024-10-18 Thread Thomas Monjalon
A structure has been created for IPv6 addresses replacing the byte arrays of the IPv6 header. This change was failing the compilation: mrvl_flow.c:1055:29: error: incompatible type for argument 1 of 'memcmp' Instead of adapting the memcmp call, a new function is used to compare an IPv6 address wi