diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2024-05-21 05:01:11 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-05-29 20:24:44 +0200 |
commit | bc4d5f5d2debf8bb65fba188313481549ead8576 (patch) | |
tree | 1a9cdaf4de2c5948c4ce892bbfb45a38b0530a94 /tools | |
parent | tracing/selftests: Fix kprobe event name test for .isra. functions (diff) | |
download | linux-bc4d5f5d2debf8bb65fba188313481549ead8576.tar.xz linux-bc4d5f5d2debf8bb65fba188313481549ead8576.zip |
selftests: cachestat: Fix build warnings on ppc64
Fix warnings like:
test_cachestat.c: In function ‘print_cachestat’:
test_cachestat.c:30:38: warning: format ‘%llu’ expects argument of
type ‘long long unsigned int’, but argument 2 has type ‘__u64’ {aka
‘long unsigned int’} [-Wformat=]
By switching to unsigned long long for u64 for ppc64 builds.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/cachestat/test_cachestat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/cachestat/test_cachestat.c b/tools/testing/selftests/cachestat/test_cachestat.c index b171fd53b004..632ab44737ec 100644 --- a/tools/testing/selftests/cachestat/test_cachestat.c +++ b/tools/testing/selftests/cachestat/test_cachestat.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 #define _GNU_SOURCE +#define __SANE_USERSPACE_TYPES__ // Use ll64 #include <stdio.h> #include <stdbool.h> |