Re: [ovs-dev] [PATCH v3 2/6] dpif-netdev-lookup: Fix GCC 5 warning.

2022-04-12 Thread Pai G, Sunil
> -Original Message- > From: dev On Behalf Of Cian Ferriter > Sent: Thursday, March 3, 2022 10:35 PM > To: ovs-dev@openvswitch.org > Subject: [ovs-dev] [PATCH v3 2/6] dpif-netdev-lookup: Fix GCC 5 warning. > > GCC 5 gave an incompatible pointer type warning for

[ovs-dev] [PATCH v3 2/6] dpif-netdev-lookup: Fix GCC 5 warning.

2022-03-03 Thread Cian Ferriter
GCC 5 gave an incompatible pointer type warning for pkt_blocks when it's passed to _mm512_mask_i64gather_epi64(). Follow the same pattern used for tbl_blocks where the 'const uint64_t *' is cast to a 'const void *' when passed in to avx512_blocks_gather(). Signed-off-by: Cian Ferriter --- v3: