Re: [dpdk-dev] [PATCH 4/5] test/thash: add tests for a new Toeplitz hash function

2021-09-08 Thread Medvedkin, Vladimir
Hi Stephen, On 07/09/2021 02:35, Stephen Hemminger wrote: On Mon, 6 Sep 2021 17:03:58 +0100 Vladimir Medvedkin wrote: +uint8_t big_rss_key[] = { +0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, +0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, +0xd0, 0xca, 0x2b, 0xcb, 0xae, 0x7b, 0x30, 0xb4,

Re: [dpdk-dev] [PATCH 4/5] test/thash: add tests for a new Toeplitz hash function

2021-09-06 Thread Stephen Hemminger
On Mon, 6 Sep 2021 17:03:58 +0100 Vladimir Medvedkin wrote: > +uint8_t big_rss_key[] = { > +0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, > +0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, > +0xd0, 0xca, 0x2b, 0xcb, 0xae, 0x7b, 0x30, 0xb4, > +0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, 0xf2, 0x0c, > +

[dpdk-dev] [PATCH 4/5] test/thash: add tests for a new Toeplitz hash function

2021-09-06 Thread Vladimir Medvedkin
This patch provides a set of tests for verifying the new implementation of Toeplitz hash function using GFNI. Signed-off-by: Vladimir Medvedkin --- app/test/test_thash.c | 231 ++ 1 file changed, 231 insertions(+) diff --git a/app/test/test_thash.