Skip to content

Commit c0a53de

Browse files
Andre-ARMsmb49
authored andcommitted
kselftest/arm64: mte: fix printf type warnings about longs
BugLink: https://bugs.launchpad.net/bugs/2101915 [ Upstream commit 96dddb7b9406259baace9a1831e8da155311be6f ] When checking MTE tags, we print some diagnostic messages when the tests fail. Some variables uses there are "longs", however we only use "%x" for the format specifier. Update the format specifiers to "%lx", to match the variable types they are supposed to print. Fixes: f3b2a26 ("kselftest/arm64: Verify mte tag inclusion via prctl") Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20240816153251.2833702-9-andre.przywara@arm.com Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Koichiro Den <koichiro.den@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent bf7b1f7 commit c0a53de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/testing/selftests/arm64/mte/check_tags_inclusion.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static int check_single_included_tags(int mem_type, int mode)
6565
ptr = mte_insert_tags(ptr, BUFFER_SIZE);
6666
/* Check tag value */
6767
if (MT_FETCH_TAG((uintptr_t)ptr) == tag) {
68-
ksft_print_msg("FAIL: wrong tag = 0x%x with include mask=0x%x\n",
68+
ksft_print_msg("FAIL: wrong tag = 0x%lx with include mask=0x%x\n",
6969
MT_FETCH_TAG((uintptr_t)ptr),
7070
MT_INCLUDE_VALID_TAG(tag));
7171
result = KSFT_FAIL;
@@ -97,7 +97,7 @@ static int check_multiple_included_tags(int mem_type, int mode)
9797
ptr = mte_insert_tags(ptr, BUFFER_SIZE);
9898
/* Check tag value */
9999
if (MT_FETCH_TAG((uintptr_t)ptr) < tag) {
100-
ksft_print_msg("FAIL: wrong tag = 0x%x with include mask=0x%x\n",
100+
ksft_print_msg("FAIL: wrong tag = 0x%lx with include mask=0x%lx\n",
101101
MT_FETCH_TAG((uintptr_t)ptr),
102102
MT_INCLUDE_VALID_TAGS(excl_mask));
103103
result = KSFT_FAIL;

0 commit comments

Comments
 (0)