* [PATCH v2] selftest/mm: fix pointer comparison in mremap_test
@ 2025-11-08 16:18 Ankit Khushwaha
2025-11-10 9:10 ` David Hildenbrand (Red Hat)
2025-11-10 10:33 ` Mike Rapoport
0 siblings, 2 replies; 3+ messages in thread
From: Ankit Khushwaha @ 2025-11-08 16:18 UTC (permalink / raw)
To: Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Shuah Khan, linux-mm,
linux-kselftest
Cc: linux-kernel, Ankit Khushwaha
Pointer arthemitic with 'void * addr' and 'ulong dest_alignment'
triggers following warning:
mremap_test.c:1035:31: warning: pointer comparison always evaluates to
false [-Wtautological-compare]
1035 | if (addr + c.dest_alignment < addr) {
| ^
this warning is raised from clang version 20.1.8 (Fedora 20.1.8-4.fc42).
use 'void *tmp_addr' to do the pointer arthemitic.
Signed-off-by: Ankit Khushwaha <ankitkhushwaha.linux@gmail.com>
---
Changelog:
v2:
- use 'void *tmp_addr' for pointer arthemitic instead of typecasting
'addr' to 'unsigned long long' as suggested by Andrew.
v1: https://lore.kernel.org/linux-kselftest/20251106104917.39890-1-ankitkhushwaha.linux@gmail.com/
---
tools/testing/selftests/mm/mremap_test.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/mm/mremap_test.c b/tools/testing/selftests/mm/mremap_test.c
index a95c0663a011..308576437228 100644
--- a/tools/testing/selftests/mm/mremap_test.c
+++ b/tools/testing/selftests/mm/mremap_test.c
@@ -994,7 +994,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp, unsigned long page_siz
static long long remap_region(struct config c, unsigned int threshold_mb,
char *rand_addr)
{
- void *addr, *src_addr, *dest_addr, *dest_preamble_addr = NULL;
+ void *addr, *tmp_addr, *src_addr, *dest_addr, *dest_preamble_addr = NULL;
unsigned long long t, d;
struct timespec t_start = {0, 0}, t_end = {0, 0};
long long start_ns, end_ns, align_mask, ret, offset;
@@ -1032,7 +1032,8 @@ static long long remap_region(struct config c, unsigned int threshold_mb,
/* Don't destroy existing mappings unless expected to overlap */
while (!is_remap_region_valid(addr, c.region_size) && !c.overlapping) {
/* Check for unsigned overflow */
- if (addr + c.dest_alignment < addr) {
+ tmp_addr = addr + c.dest_alignment;
+ if (tmp_addr < addr) {
ksft_print_msg("Couldn't find a valid region to remap to\n");
ret = -1;
goto clean_up_src;
--
2.51.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] selftest/mm: fix pointer comparison in mremap_test
2025-11-08 16:18 [PATCH v2] selftest/mm: fix pointer comparison in mremap_test Ankit Khushwaha
@ 2025-11-10 9:10 ` David Hildenbrand (Red Hat)
2025-11-10 10:33 ` Mike Rapoport
1 sibling, 0 replies; 3+ messages in thread
From: David Hildenbrand (Red Hat) @ 2025-11-10 9:10 UTC (permalink / raw)
To: Ankit Khushwaha, Andrew Morton, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Shuah Khan, linux-mm, linux-kselftest
Cc: linux-kernel
On 08.11.25 17:18, Ankit Khushwaha wrote:
> Pointer arthemitic with 'void * addr' and 'ulong dest_alignment'
> triggers following warning:
>
> mremap_test.c:1035:31: warning: pointer comparison always evaluates to
> false [-Wtautological-compare]
> 1035 | if (addr + c.dest_alignment < addr) {
> | ^
>
> this warning is raised from clang version 20.1.8 (Fedora 20.1.8-4.fc42).
>
> use 'void *tmp_addr' to do the pointer arthemitic.
>
> Signed-off-by: Ankit Khushwaha <ankitkhushwaha.linux@gmail.com>
> ---
Acked-by: David Hildenbrand (Red Hat) <david@kernel.org>
--
Cheers
David
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] selftest/mm: fix pointer comparison in mremap_test
2025-11-08 16:18 [PATCH v2] selftest/mm: fix pointer comparison in mremap_test Ankit Khushwaha
2025-11-10 9:10 ` David Hildenbrand (Red Hat)
@ 2025-11-10 10:33 ` Mike Rapoport
1 sibling, 0 replies; 3+ messages in thread
From: Mike Rapoport @ 2025-11-10 10:33 UTC (permalink / raw)
To: Ankit Khushwaha
Cc: Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Suren Baghdasaryan,
Michal Hocko, Shuah Khan, linux-mm, linux-kselftest, linux-kernel
On Sat, Nov 08, 2025 at 09:48:29PM +0530, Ankit Khushwaha wrote:
> Pointer arthemitic with 'void * addr' and 'ulong dest_alignment'
> triggers following warning:
>
> mremap_test.c:1035:31: warning: pointer comparison always evaluates to
> false [-Wtautological-compare]
> 1035 | if (addr + c.dest_alignment < addr) {
> | ^
>
> this warning is raised from clang version 20.1.8 (Fedora 20.1.8-4.fc42).
>
> use 'void *tmp_addr' to do the pointer arthemitic.
>
> Signed-off-by: Ankit Khushwaha <ankitkhushwaha.linux@gmail.com>
> ---
> Changelog:
> v2:
> - use 'void *tmp_addr' for pointer arthemitic instead of typecasting
> 'addr' to 'unsigned long long' as suggested by Andrew.
>
> v1: https://lore.kernel.org/linux-kselftest/20251106104917.39890-1-ankitkhushwaha.linux@gmail.com/
> ---
> tools/testing/selftests/mm/mremap_test.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/tools/testing/selftests/mm/mremap_test.c b/tools/testing/selftests/mm/mremap_test.c
> index a95c0663a011..308576437228 100644
> --- a/tools/testing/selftests/mm/mremap_test.c
> +++ b/tools/testing/selftests/mm/mremap_test.c
> @@ -994,7 +994,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp, unsigned long page_siz
> static long long remap_region(struct config c, unsigned int threshold_mb,
> char *rand_addr)
> {
> - void *addr, *src_addr, *dest_addr, *dest_preamble_addr = NULL;
> + void *addr, *tmp_addr, *src_addr, *dest_addr, *dest_preamble_addr = NULL;
> unsigned long long t, d;
> struct timespec t_start = {0, 0}, t_end = {0, 0};
> long long start_ns, end_ns, align_mask, ret, offset;
> @@ -1032,7 +1032,8 @@ static long long remap_region(struct config c, unsigned int threshold_mb,
> /* Don't destroy existing mappings unless expected to overlap */
> while (!is_remap_region_valid(addr, c.region_size) && !c.overlapping) {
> /* Check for unsigned overflow */
> - if (addr + c.dest_alignment < addr) {
> + tmp_addr = addr + c.dest_alignment;
Nit: tmp_addr can be declared here.
Other than that
Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
> + if (tmp_addr < addr) {
> ksft_print_msg("Couldn't find a valid region to remap to\n");
> ret = -1;
> goto clean_up_src;
> --
> 2.51.1
>
--
Sincerely yours,
Mike.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-11-10 10:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-08 16:18 [PATCH v2] selftest/mm: fix pointer comparison in mremap_test Ankit Khushwaha
2025-11-10 9:10 ` David Hildenbrand (Red Hat)
2025-11-10 10:33 ` Mike Rapoport
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).