From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8438F4638A; Wed, 12 Mar 2025 20:29:03 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C021B40DDC; Wed, 12 Mar 2025 20:28:49 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7562940DC9 for ; Wed, 12 Mar 2025 20:28:44 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 72AA5210B159; Wed, 12 Mar 2025 12:28:43 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 72AA5210B159 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1741807723; bh=7y99vFb5GsSOFCk5IB1En/3+CNig0l2zWbp5YGWACBE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HWvVYhSzG/SuW5lvgu53PSPJrLYKK4kjNe8KYJUPkSZ7njpdUo+zDJmoLkk+XMVvF pdsgaRmn1P1gmlp5YOy7hLSMkzEqZqVYafXeAFU7GkdEIldd6fCVa6v3j7QlshKbzo DPNZiVIqM+BRxGgBx+qmn0WqAtxm5MDc5WKB/e/M= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: bruce.richardson@intel.com, dev@dpdk.org, sameh.gobriel@intel.com, vladimir.medvedkin@intel.com, yipeng1.wang@intel.com Subject: [PATCH v3 2/3] hash_multiwriter_autotest: fix printf parameters Date: Wed, 12 Mar 2025 12:28:33 -0700 Message-Id: <1741807714-26748-3-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1741807714-26748-1-git-send-email-andremue@linux.microsoft.com> References: <1741291408-26509-1-git-send-email-andremue@linux.microsoft.com> <1741807714-26748-1-git-send-email-andremue@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Compiling with MSVC logs the warnings below, which result in build error: ../app/test/test_hash_multiwriter.c(71): warning C4476: 'printf' : unknown type field character ''' in format specifier ../app/test/test_hash_multiwriter.c(73): warning C4474: 'printf' : too many arguments passed for format string ../app/test/test_hash_multiwriter.c(73): note: placeholders and their parameters expect 2 variadic arguments, but 4 were provided Signed-off-by: Andre Muezerie --- app/test/test_hash_multiwriter.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app/test/test_hash_multiwriter.c b/app/test/test_hash_multiwriter.c index 33d3147bd8..5c1dd4c195 100644 --- a/app/test/test_hash_multiwriter.c +++ b/app/test/test_hash_multiwriter.c @@ -32,6 +32,8 @@ #define RTE_APP_TEST_HASH_MULTIWRITER_FAILED 0 +#define OFFSET_STR_LEN 16 + struct { uint32_t *keys; uint32_t *found; @@ -51,11 +53,14 @@ static int use_htm; static int test_hash_multiwriter_worker(void *arg) { + char offset_start[OFFSET_STR_LEN]; + char offset_end[OFFSET_STR_LEN]; uint64_t i, offset; uint16_t pos_core; uint32_t lcore_id = rte_lcore_id(); uint64_t begin, cycles; uint16_t *enabled_core_ids = (uint16_t *)arg; + const bool use_iec = true; for (pos_core = 0; pos_core < rte_lcore_count(); pos_core++) { if (enabled_core_ids[pos_core] == lcore_id) @@ -68,10 +73,12 @@ test_hash_multiwriter_worker(void *arg) */ offset = pos_core * tbl_multiwriter_test_params.nb_tsx_insertion; - printf("Core #%d inserting %d: %'"PRId64" - %'"PRId64"\n", + rte_size_to_str(offset_start, sizeof(offset_start), offset, use_iec); + rte_size_to_str(offset_end, sizeof(offset_end), + offset + tbl_multiwriter_test_params.nb_tsx_insertion - 1, use_iec); + printf("Core #%u inserting %u: %s - %s\n", lcore_id, tbl_multiwriter_test_params.nb_tsx_insertion, - offset, - offset + tbl_multiwriter_test_params.nb_tsx_insertion - 1); + offset_start, offset_end); begin = rte_rdtsc_precise(); -- 2.48.1.vfs.0.1