From: David Marchand <david.marchand@redhat.com>
To: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
Cc: dev <dev@dpdk.org>,
"Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
"Chilikin, Andrey" <andrey.chilikin@intel.com>,
"Kinsella, Ray" <ray.kinsella@intel.com>,
"Wang, Yipeng1" <yipeng1.wang@intel.com>,
"Gobriel, Sameh" <sameh.gobriel@intel.com>,
Bruce Richardson <bruce.richardson@intel.com>
Subject: Re: [dpdk-dev] [PATCH v5 3/5] test/hash: add additional thash tests
Date: Thu, 29 Apr 2021 11:13:20 +0200 [thread overview]
Message-ID: <CAJFAV8yEAxAbZHw-aN2_pO9-jcgEjPbRMwn13Ffnx7DmJt3C1Q@mail.gmail.com> (raw)
In-Reply-To: <1618847995-91229-4-git-send-email-vladimir.medvedkin@intel.com>
Hello Vladimir,
On Mon, Apr 19, 2021 at 6:00 PM Vladimir Medvedkin
<vladimir.medvedkin@intel.com> wrote:
> +static int
> +test_adjust_tuple(void)
> +{
> + struct rte_thash_ctx *ctx;
> + struct rte_thash_subtuple_helper *h;
> + const int key_len = 40;
> + const uint8_t *new_key;
> + uint8_t tuple[TUPLE_SZ];
> + uint32_t tmp_tuple[TUPLE_SZ / sizeof(uint32_t)];
> + uint32_t tuple_copy[TUPLE_SZ / sizeof(uint32_t)];
> + uint32_t hash;
> + int reta_sz = CHAR_BIT;
> + int ret;
> + unsigned int i, desired_value = rte_rand() & HASH_MSK(reta_sz);
> +
> + memset(tuple, 0xab, TUPLE_SZ);
> +
> + ctx = rte_thash_init_ctx("test", key_len, reta_sz, NULL, 0);
> + RTE_TEST_ASSERT(ctx != NULL, "can not create thash ctx\n");
> +
> + /*
> + * set offset to be in the middle of a byte
> + * set size of the subtuple to be 2 * rets_sz
> + * to have the room for random bits
> + */
> + ret = rte_thash_add_helper(ctx, "test", reta_sz * 2,
> + (5 * CHAR_BIT) + 4);
> + RTE_TEST_ASSERT(ret == 0, "can not add helper, ret %d\n", ret);
> +
> + new_key = rte_thash_get_key(ctx);
> +
> + h = rte_thash_get_helper(ctx, "test");
> + RTE_TEST_ASSERT(h != NULL, "can not find helper\n");
> +
> + ret = rte_thash_adjust_tuple(ctx, h, tuple, TUPLE_SZ, desired_value,
> + 1, NULL, NULL);
> + RTE_TEST_ASSERT(ret == 0, "can not adjust tuple, ret %d\n", ret);
> +
> + for (i = 0; i < (TUPLE_SZ / 4); i++)
> + tmp_tuple[i] =
> + rte_be_to_cpu_32(*(uint32_t *)&tuple[i * 4]);
> +
> + hash = rte_softrss(tmp_tuple, TUPLE_SZ / 4, new_key);
> + RTE_TEST_ASSERT((hash & HASH_MSK(reta_sz)) ==
> + desired_value, "bad desired value\n");
> +
> +
> + /* Pass previously calculated tuple to callback function */
> + memcpy(tuple_copy, tuple, TUPLE_SZ);
> +
> + memset(tuple, 0xab, TUPLE_SZ);
> + ret = rte_thash_adjust_tuple(ctx, h, tuple, TUPLE_SZ, desired_value,
> + 1, cmp_tuple_eq, tuple_copy);
> + RTE_TEST_ASSERT(ret == -EEXIST,
> + "adjust tuple didn't indicate collision\n");
> +
> + /*
> + * Make the function to generate random bits into subtuple
> + * after first adjustment attempt.
> + */
> + memset(tuple, 0xab, TUPLE_SZ);
> + ret = rte_thash_adjust_tuple(ctx, h, tuple, TUPLE_SZ, desired_value,
> + 2, cmp_tuple_eq, tuple_copy);
> + RTE_TEST_ASSERT(ret == 0, "can not adjust tuple, ret %d\n", ret);
This check failed at least once in the CI, for no obvious (for me) reason.
https://github.com/ovsrobot/dpdk/actions/runs/794713806
87/96 DPDK:fast-tests / thash_autotest FAIL 0.17 s (exit
status 255 or signal 127 SIGinvalid)
--- command ---
DPDK_TEST='thash_autotest'
/home/runner/work/dpdk/dpdk/build/app/test/dpdk-test -l 0-1
--file-prefix=thash_autotest
--- stdout ---
RTE>>thash_autotest
+ ------------------------------------------------------- +
+ Test Suite : thash autotest
+ ------------------------------------------------------- +
+ TestCase [ 0] : test_toeplitz_hash_calc succeeded
+ TestCase [ 1] : test_create_invalid succeeded
+ TestCase [ 2] : test_multiple_create succeeded
+ TestCase [ 3] : test_free_null succeeded
+ TestCase [ 4] : test_add_invalid_helper succeeded
+ TestCase [ 5] : test_find_existing succeeded
+ TestCase [ 6] : test_get_helper succeeded
+ TestCase [ 7] : test_period_overflow succeeded
+ TestCase [ 8] : test_predictable_rss_min_seq succeeded
+ TestCase [ 9] : test_predictable_rss_multirange succeeded
+ TestCase [10] : test_adjust_tuple failed
+ ------------------------------------------------------- +
+ Test Suite Summary
+ Tests Total : 11
+ Tests Skipped : 0
+ Tests Executed : 11
+ Tests Unsupported: 0
+ Tests Passed : 10
+ Tests Failed : 1
+ ------------------------------------------------------- +
Test Failed
RTE>>
--- stderr ---
EAL: Detected 2 lcore(s)
EAL: Detected 1 NUMA nodes
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/thash_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
APP: HPET is not enabled, using TSC as default timer
HASH: Can't add helper due to conflict with existing helper second_range
HASH: Can't generate m-sequence due to period overflow
EAL: Test assert test_adjust_tuple line 559 failed: can not adjust
tuple, ret -17
-------
> +
> + for (i = 0; i < (TUPLE_SZ / 4); i++)
> + tmp_tuple[i] =
> + rte_be_to_cpu_32(*(uint32_t *)&tuple[i * 4]);
> +
> + hash = rte_softrss(tmp_tuple, TUPLE_SZ / 4, new_key);
> + RTE_TEST_ASSERT((hash & HASH_MSK(reta_sz)) ==
> + desired_value, "bad desired value\n");
> +
> + rte_thash_free_ctx(ctx);
> +
> + return TEST_SUCCESS;
> +}
--
David Marchand
next prev parent reply other threads:[~2021-04-29 9:13 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-16 18:24 [dpdk-dev] [PATCH v1 0/3] Predictable RSS feature Vladimir Medvedkin
2021-03-16 18:24 ` [dpdk-dev] [PATCH v1 1/3] hash: add predictable RSS API Vladimir Medvedkin
2021-03-16 18:24 ` [dpdk-dev] [PATCH v1 2/3] hash: add predictable RSS implementation Vladimir Medvedkin
2021-03-16 18:24 ` [dpdk-dev] [PATCH v1 3/3] test/hash: add additional thash tests Vladimir Medvedkin
2021-04-06 19:50 ` [dpdk-dev] [PATCH v2 0/3] Predictable RSS feature Vladimir Medvedkin
2021-04-08 15:56 ` Stephen Hemminger
2021-04-11 18:51 ` Medvedkin, Vladimir
2021-10-22 20:37 ` Thomas Monjalon
2021-10-24 14:42 ` Vladimir Medvedkin
2021-04-10 0:32 ` Wang, Yipeng1
2021-04-11 18:51 ` Medvedkin, Vladimir
2021-04-11 19:11 ` [dpdk-dev] [PATCH v3 " Vladimir Medvedkin
2021-04-13 13:19 ` [dpdk-dev] [PATCH v4 " Vladimir Medvedkin
2021-04-14 18:04 ` Wang, Yipeng1
2021-04-15 8:29 ` David Marchand
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 0/5] " Vladimir Medvedkin
2021-04-20 21:31 ` Thomas Monjalon
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 1/5] hash: add predictable RSS API Vladimir Medvedkin
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 2/5] hash: add predictable RSS implementation Vladimir Medvedkin
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 3/5] test/hash: add additional thash tests Vladimir Medvedkin
2021-04-29 9:13 ` David Marchand [this message]
2021-04-29 9:17 ` Medvedkin, Vladimir
2021-04-29 18:45 ` Stanislaw Kardach
2021-05-04 14:06 ` Medvedkin, Vladimir
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 4/5] doc: add thash documentation Vladimir Medvedkin
2021-04-20 11:25 ` Mcnamara, John
2021-04-19 15:59 ` [dpdk-dev] [PATCH v5 5/5] maintainers: claim maintainership of the hash library Vladimir Medvedkin
2021-04-13 13:19 ` [dpdk-dev] [PATCH v4 1/3] hash: add predictable RSS API Vladimir Medvedkin
2021-04-14 17:06 ` Wang, Yipeng1
2021-04-13 13:19 ` [dpdk-dev] [PATCH v4 2/3] hash: add predictable RSS implementation Vladimir Medvedkin
2021-04-14 17:51 ` Wang, Yipeng1
2021-04-13 13:19 ` [dpdk-dev] [PATCH v4 3/3] test/hash: add additional thash tests Vladimir Medvedkin
2021-04-14 17:56 ` Wang, Yipeng1
2021-04-11 19:11 ` [dpdk-dev] [PATCH v3 1/3] hash: add predictable RSS API Vladimir Medvedkin
2021-04-11 19:11 ` [dpdk-dev] [PATCH v3 2/3] hash: add predictable RSS implementation Vladimir Medvedkin
2021-04-11 19:11 ` [dpdk-dev] [PATCH v3 3/3] test/hash: add additional thash tests Vladimir Medvedkin
2021-04-06 19:50 ` [dpdk-dev] [PATCH v2 1/3] hash: add predictable RSS API Vladimir Medvedkin
2021-04-10 0:05 ` Wang, Yipeng1
2021-04-11 18:52 ` Medvedkin, Vladimir
2021-04-06 19:50 ` [dpdk-dev] [PATCH v2 2/3] hash: add predictable RSS implementation Vladimir Medvedkin
2021-04-07 12:53 ` Ananyev, Konstantin
2021-04-11 18:51 ` Medvedkin, Vladimir
2021-04-12 9:47 ` Ananyev, Konstantin
2021-04-13 12:28 ` Medvedkin, Vladimir
2021-04-10 0:10 ` Wang, Yipeng1
2021-04-11 18:52 ` Medvedkin, Vladimir
2021-04-06 19:50 ` [dpdk-dev] [PATCH v2 3/3] test/hash: add additional thash tests Vladimir Medvedkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAJFAV8yEAxAbZHw-aN2_pO9-jcgEjPbRMwn13Ffnx7DmJt3C1Q@mail.gmail.com \
--to=david.marchand@redhat.com \
--cc=andrey.chilikin@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=konstantin.ananyev@intel.com \
--cc=ray.kinsella@intel.com \
--cc=sameh.gobriel@intel.com \
--cc=vladimir.medvedkin@intel.com \
--cc=yipeng1.wang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).