[PATCH] kselftest/futex : fixed typo errors

hariconscious@gmail.com posted 1 patch 1 month, 2 weeks ago
.../testing/selftests/futex/functional/futex_priv_hash.c  | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
[PATCH] kselftest/futex : fixed typo errors
Posted by hariconscious@gmail.com 1 month, 2 weeks ago
From: HariKrishna <hariconscious@gmail.com>

fixed typo errors in kselftest of futex module

Signed-off-by: HariKrishna <hariconscious@gmail.com>
---
 .../testing/selftests/futex/functional/futex_priv_hash.c  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tools/testing/selftests/futex/functional/futex_priv_hash.c b/tools/testing/selftests/futex/functional/futex_priv_hash.c
index 24a92dc94eb8..bbdb63b10eef 100644
--- a/tools/testing/selftests/futex/functional/futex_priv_hash.c
+++ b/tools/testing/selftests/futex/functional/futex_priv_hash.c
@@ -115,7 +115,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);
@@ -180,7 +180,7 @@ int main(int argc, char *argv[])
 	if (ret != 0)
 		ksft_exit_fail_msg("pthread_join() failed: %d, %m\n", ret);
 
-	/* First thread, has to initialiaze private hash */
+	/* First thread, has to initialize private hash */
 	futex_slots1 = futex_hash_slots_get();
 	if (futex_slots1 <= 0) {
 		ksft_print_msg("Current hash buckets: %d\n", futex_slots1);
@@ -235,14 +235,14 @@ int main(int argc, char *argv[])
 	ksft_test_result(counter == MAX_THREADS, "Created of waited for %d of %d threads\n",
 			 counter, MAX_THREADS);
 	counter = 0;
-	/* Once the user set something, auto reisze must be disabled */
+	/* Once the user set something, auto resize must be disabled */
 	ret = pthread_barrier_init(&barrier_main, NULL, MAX_THREADS);
 
 	create_max_threads(thread_lock_fn);
 	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, 0);
-- 
2.43.0
Re: [PATCH] kselftest/futex : fixed typo errors
Posted by Sebastian Andrzej Siewior 1 month, 2 weeks ago
On 2025-08-15 21:21:47 [+0530], hariconscious@gmail.com wrote:
> From: HariKrishna <hariconscious@gmail.com>
> 
> fixed typo errors in kselftest of futex module
> 
> Signed-off-by: HariKrishna <hariconscious@gmail.com>

Addressed by https://lore.kernel.org/all/20250815093942.8595-1-krishnagopi487@gmail.com/

Sebastian