Re: [dpdk-dev] [PATCH v1] lib/distributor: fix unaligned 128-bit write

2021-07-20 Thread Thomas Monjalon
16/07/2021 15:32, David Hunt: > When the distributor sample app is built as a 32-bit app, > the data buffer passed to find_match_vec can be unaligned, > causing a segmentation fault due to writing a 128-bit value > using _mm_store_si128(). 128-bit align the data being > passed in so this does not

Re: [dpdk-dev] [PATCH v1] lib/distributor: fix unaligned 128-bit write

2021-07-20 Thread Thomas Monjalon
16/07/2021 15:32, David Hunt: > When the distributor sample app is built as a 32-bit app, > the data buffer passed to find_match_vec can be unaligned, > causing a segmentation fault due to writing a 128-bit value > using _mm_store_si128(). 128-bit align the data being > passed in so this does not

[dpdk-dev] [PATCH v1] lib/distributor: fix unaligned 128-bit write

2021-07-16 Thread David Hunt
When the distributor sample app is built as a 32-bit app, the data buffer passed to find_match_vec can be unaligned, causing a segmentation fault due to writing a 128-bit value using _mm_store_si128(). 128-bit align the data being passed in so this does not happen. Fixes: 775003ad2f96 ("distribut