linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap"
@ 2025-07-23  9:50 Colin Ian King
  2025-07-23  9:57 ` David Hildenbrand
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Colin Ian King @ 2025-07-23  9:50 UTC (permalink / raw)
  To: Andrew Morton, Shuah Khan, linux-mm, linux-kselftest
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in ksft_test_result_fail messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/mm/mremap_test.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tools/testing/selftests/mm/mremap_test.c b/tools/testing/selftests/mm/mremap_test.c
index fccf9e797a0c..774cdba102fc 100644
--- a/tools/testing/selftests/mm/mremap_test.c
+++ b/tools/testing/selftests/mm/mremap_test.c
@@ -525,10 +525,10 @@ static void mremap_move_multiple_vmas(unsigned int pattern_seed,
 out:
 	if (success)
 		ksft_test_result_pass("%s%s\n", test_name,
-				      dont_unmap ? " [dontunnmap]" : "");
+				      dont_unmap ? " [dontunmap]" : "");
 	else
 		ksft_test_result_fail("%s%s\n", test_name,
-				      dont_unmap ? " [dontunnmap]" : "");
+				      dont_unmap ? " [dontunmap]" : "");
 }
 
 static void mremap_shrink_multiple_vmas(unsigned long page_size,
@@ -727,10 +727,10 @@ static void mremap_move_multiple_vmas_split(unsigned int pattern_seed,
 out:
 	if (success)
 		ksft_test_result_pass("%s%s\n", test_name,
-				      dont_unmap ? " [dontunnmap]" : "");
+				      dont_unmap ? " [dontunmap]" : "");
 	else
 		ksft_test_result_fail("%s%s\n", test_name,
-				      dont_unmap ? " [dontunnmap]" : "");
+				      dont_unmap ? " [dontunmap]" : "");
 }
 
 /* Returns the time taken for the remap on success else returns -1. */
-- 
2.50.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap"
  2025-07-23  9:50 [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap" Colin Ian King
@ 2025-07-23  9:57 ` David Hildenbrand
  2025-07-23 10:37 ` Dev Jain
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: David Hildenbrand @ 2025-07-23  9:57 UTC (permalink / raw)
  To: Colin Ian King, Andrew Morton, Shuah Khan, linux-mm,
	linux-kselftest
  Cc: kernel-janitors, linux-kernel

On 23.07.25 11:50, Colin Ian King wrote:
> There is a spelling mistake in ksft_test_result_fail messages. Fix them.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---

Acked-by: David Hildenbrand <david@redhat.com>

-- 
Cheers,

David / dhildenb



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap"
  2025-07-23  9:50 [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap" Colin Ian King
  2025-07-23  9:57 ` David Hildenbrand
@ 2025-07-23 10:37 ` Dev Jain
  2025-07-23 10:45 ` Lorenzo Stoakes
  2025-07-23 16:36 ` Vishal Moola (Oracle)
  3 siblings, 0 replies; 5+ messages in thread
From: Dev Jain @ 2025-07-23 10:37 UTC (permalink / raw)
  To: Colin Ian King, Andrew Morton, Shuah Khan, linux-mm,
	linux-kselftest
  Cc: kernel-janitors, linux-kernel


On 23/07/25 3:20 pm, Colin Ian King wrote:
> There is a spelling mistake in ksft_test_result_fail messages. Fix them.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>   


Reviewed-by: Dev Jain <dev.jain@arm.com>




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap"
  2025-07-23  9:50 [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap" Colin Ian King
  2025-07-23  9:57 ` David Hildenbrand
  2025-07-23 10:37 ` Dev Jain
@ 2025-07-23 10:45 ` Lorenzo Stoakes
  2025-07-23 16:36 ` Vishal Moola (Oracle)
  3 siblings, 0 replies; 5+ messages in thread
From: Lorenzo Stoakes @ 2025-07-23 10:45 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Andrew Morton, Shuah Khan, linux-mm, linux-kselftest,
	kernel-janitors, linux-kernel

On Wed, Jul 23, 2025 at 10:50:27AM +0100, Colin Ian King wrote:
> There is a spelling mistake in ksft_test_result_fail messages. Fix them.

Oops :) Thanks!

This is new in this cycle so I think Andrew may just squash this into the
relevant patch.

>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>

> ---
>  tools/testing/selftests/mm/mremap_test.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/tools/testing/selftests/mm/mremap_test.c b/tools/testing/selftests/mm/mremap_test.c
> index fccf9e797a0c..774cdba102fc 100644
> --- a/tools/testing/selftests/mm/mremap_test.c
> +++ b/tools/testing/selftests/mm/mremap_test.c
> @@ -525,10 +525,10 @@ static void mremap_move_multiple_vmas(unsigned int pattern_seed,
>  out:
>  	if (success)
>  		ksft_test_result_pass("%s%s\n", test_name,
> -				      dont_unmap ? " [dontunnmap]" : "");
> +				      dont_unmap ? " [dontunmap]" : "");
>  	else
>  		ksft_test_result_fail("%s%s\n", test_name,
> -				      dont_unmap ? " [dontunnmap]" : "");
> +				      dont_unmap ? " [dontunmap]" : "");
>  }
>
>  static void mremap_shrink_multiple_vmas(unsigned long page_size,
> @@ -727,10 +727,10 @@ static void mremap_move_multiple_vmas_split(unsigned int pattern_seed,
>  out:
>  	if (success)
>  		ksft_test_result_pass("%s%s\n", test_name,
> -				      dont_unmap ? " [dontunnmap]" : "");
> +				      dont_unmap ? " [dontunmap]" : "");
>  	else
>  		ksft_test_result_fail("%s%s\n", test_name,
> -				      dont_unmap ? " [dontunnmap]" : "");
> +				      dont_unmap ? " [dontunmap]" : "");
>  }
>
>  /* Returns the time taken for the remap on success else returns -1. */
> --
> 2.50.0
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap"
  2025-07-23  9:50 [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap" Colin Ian King
                   ` (2 preceding siblings ...)
  2025-07-23 10:45 ` Lorenzo Stoakes
@ 2025-07-23 16:36 ` Vishal Moola (Oracle)
  3 siblings, 0 replies; 5+ messages in thread
From: Vishal Moola (Oracle) @ 2025-07-23 16:36 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Andrew Morton, Shuah Khan, linux-mm, linux-kselftest,
	kernel-janitors, linux-kernel

On Wed, Jul 23, 2025 at 10:50:27AM +0100, Colin Ian King wrote:
> There is a spelling mistake in ksft_test_result_fail messages. Fix them.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---

Reviewed-by: Vishal Moola (Oracle) <vishal.moola@gmail.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-07-23 16:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-23  9:50 [PATCH][next] tools/testing/selftests: Fix spelling mistake "unnmap" -> "unmap" Colin Ian King
2025-07-23  9:57 ` David Hildenbrand
2025-07-23 10:37 ` Dev Jain
2025-07-23 10:45 ` Lorenzo Stoakes
2025-07-23 16:36 ` Vishal Moola (Oracle)

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).