linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] selftests: futex; Fix spelling in test messages
@ 2025-08-27 10:54 bhanuseshukumar
  0 siblings, 0 replies; 3+ messages in thread
From: bhanuseshukumar @ 2025-08-27 10:54 UTC (permalink / raw)
  To: tglx, mingo, shuah
  Cc: peterz, dvhart, dave, andrealmeid, linux-kernel, linux-kselftest,
	linux-kernel-mentees, bigeasy, colin.i.king, bhanuseshukumar

    Correct few spelling mistakes in selftest output messages to improve
    readability

Signed-off-by: bhanuseshukumar <bhanuseshukumar@gmail.com>
---
 This fix is part of kselftest pre-requisite task for kernel mentorship fall 2025.

 --changes in v2 to v1
     grammar fix : instead -> instead of 
 tools/testing/selftests/futex/functional/futex_priv_hash.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/futex/functional/futex_priv_hash.c b/tools/testing/selftests/futex/functional/futex_priv_hash.c
index aea001ac4946..8a5735391f2e 100644
--- a/tools/testing/selftests/futex/functional/futex_priv_hash.c
+++ b/tools/testing/selftests/futex/functional/futex_priv_hash.c
@@ -132,7 +132,7 @@ static void usage(char *prog)
 {
 	printf("Usage: %s\n", prog);
 	printf("  -c    Use color\n");
-	printf("  -g    Test global hash instead intead local immutable \n");
+	printf("  -g    Test global hash instead of local immutable \n");
 	printf("  -h    Display this help message\n");
 	printf("  -v L  Verbosity level: %d=QUIET %d=CRITICAL %d=INFO\n",
 	       VQUIET, VCRITICAL, VINFO);
@@ -267,7 +267,7 @@ int main(int argc, char *argv[])
 	join_max_threads();
 
 	ret = futex_hash_slots_get();
-	ksft_test_result(ret == 2, "No more auto-resize after manaul setting, got %d\n",
+	ksft_test_result(ret == 2, "No more auto-resize after manual setting, got %d\n",
 			 ret);
 
 	futex_hash_slots_set_must_fail(1 << 29);
-- 
2.34.1


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

* [PATCH v2] selftests: futex; Fix spelling in test messages
@ 2025-08-27 10:56 bhanuseshukumar
  2025-08-27 11:00 ` Sebastian Andrzej Siewior
  0 siblings, 1 reply; 3+ messages in thread
From: bhanuseshukumar @ 2025-08-27 10:56 UTC (permalink / raw)
  To: tglx, mingo, shuah
  Cc: peterz, dvhart, dave, andrealmeid, linux-kernel, linux-kselftest,
	linux-kernel-mentees, bigeasy, colin.i.king, bhanuseshukumar

    Correct few spelling mistakes in selftest output messages to improve
    readability

Signed-off-by: bhanuseshukumar <bhanuseshukumar@gmail.com>
---
 This fix is part of kselftest pre-requisite task for kernel mentorship fall 2025.

 --changes in v2 to v1
     grammar fix : instead -> instead of
     v1: https://lore.kernel.org/all/20250821154103.115110-1-bhanuseshukumar@gmail.com/      
 tools/testing/selftests/futex/functional/futex_priv_hash.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/futex/functional/futex_priv_hash.c b/tools/testing/selftests/futex/functional/futex_priv_hash.c
index aea001ac4946..8a5735391f2e 100644
--- a/tools/testing/selftests/futex/functional/futex_priv_hash.c
+++ b/tools/testing/selftests/futex/functional/futex_priv_hash.c
@@ -132,7 +132,7 @@ static void usage(char *prog)
 {
 	printf("Usage: %s\n", prog);
 	printf("  -c    Use color\n");
-	printf("  -g    Test global hash instead intead local immutable \n");
+	printf("  -g    Test global hash instead of local immutable \n");
 	printf("  -h    Display this help message\n");
 	printf("  -v L  Verbosity level: %d=QUIET %d=CRITICAL %d=INFO\n",
 	       VQUIET, VCRITICAL, VINFO);
@@ -267,7 +267,7 @@ int main(int argc, char *argv[])
 	join_max_threads();
 
 	ret = futex_hash_slots_get();
-	ksft_test_result(ret == 2, "No more auto-resize after manaul setting, got %d\n",
+	ksft_test_result(ret == 2, "No more auto-resize after manual setting, got %d\n",
 			 ret);
 
 	futex_hash_slots_set_must_fail(1 << 29);
-- 
2.34.1


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

* Re: [PATCH v2] selftests: futex; Fix spelling in test messages
  2025-08-27 10:56 [PATCH v2] selftests: futex; Fix spelling in test messages bhanuseshukumar
@ 2025-08-27 11:00 ` Sebastian Andrzej Siewior
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastian Andrzej Siewior @ 2025-08-27 11:00 UTC (permalink / raw)
  To: bhanuseshukumar
  Cc: tglx, mingo, shuah, peterz, dvhart, dave, andrealmeid,
	linux-kernel, linux-kselftest, linux-kernel-mentees, colin.i.king

On 2025-08-27 16:26:39 [+0530], bhanuseshukumar wrote:
>     Correct few spelling mistakes in selftest output messages to improve
>     readability
> 
> Signed-off-by: bhanuseshukumar <bhanuseshukumar@gmail.com>

I am picking up patches and this got already fixed.

Sebastian

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

end of thread, other threads:[~2025-08-27 11:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 10:56 [PATCH v2] selftests: futex; Fix spelling in test messages bhanuseshukumar
2025-08-27 11:00 ` Sebastian Andrzej Siewior
  -- strict thread matches above, loose matches on Subject: below --
2025-08-27 10:54 bhanuseshukumar

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