linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized"
@ 2025-05-20  8:06 Colin Ian King
  2025-05-20  8:51 ` Sebastian Andrzej Siewior
  2025-05-21 12:06 ` [tip: locking/futex] " tip-bot2 for Colin Ian King
  0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2025-05-20  8:06 UTC (permalink / raw)
  To: Thomas Gleixner, Ingo Molnar, Peter Zijlstra, Darren Hart,
	Davidlohr Bueso, André Almeida, Shuah Khan,
	Sebastian Andrzej Siewior, linux-kselftest
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a fail error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/futex/functional/futex_numa_mpol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/futex/functional/futex_numa_mpol.c b/tools/testing/selftests/futex/functional/futex_numa_mpol.c
index dd70532f293e..8864c610f165 100644
--- a/tools/testing/selftests/futex/functional/futex_numa_mpol.c
+++ b/tools/testing/selftests/futex/functional/futex_numa_mpol.c
@@ -181,7 +181,7 @@ int main(int argc, char *argv[])
 	test_futex(futex_ptr, 0);
 
 	if (futex_numa->numa == FUTEX_NO_NODE) {
-		fail("NUMA node is left unitiliazed\n");
+		fail("NUMA node is left uninitialized\n");
 		return 1;
 	}
 
-- 
2.49.0


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

* Re: [PATCH][next] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized"
  2025-05-20  8:06 [PATCH][next] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized" Colin Ian King
@ 2025-05-20  8:51 ` Sebastian Andrzej Siewior
  2025-05-21 12:06 ` [tip: locking/futex] " tip-bot2 for Colin Ian King
  1 sibling, 0 replies; 3+ messages in thread
From: Sebastian Andrzej Siewior @ 2025-05-20  8:51 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Thomas Gleixner, Ingo Molnar, Peter Zijlstra, Darren Hart,
	Davidlohr Bueso, André Almeida, Shuah Khan, linux-kselftest,
	kernel-janitors, linux-kernel

On 2025-05-20 09:06:57 [+0100], Colin Ian King wrote:
> There is a spelling mistake in a fail error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>

Sebastian

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

* [tip: locking/futex] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized"
  2025-05-20  8:06 [PATCH][next] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized" Colin Ian King
  2025-05-20  8:51 ` Sebastian Andrzej Siewior
@ 2025-05-21 12:06 ` tip-bot2 for Colin Ian King
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Colin Ian King @ 2025-05-21 12:06 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Colin Ian King, Peter Zijlstra (Intel), Sebastian Andrzej Siewior,
	x86, linux-kernel

The following commit has been merged into the locking/futex branch of tip:

Commit-ID:     78272d44970c07899c78661f6b7492b5a7e14a90
Gitweb:        https://git.kernel.org/tip/78272d44970c07899c78661f6b7492b5a7e14a90
Author:        Colin Ian King <colin.i.king@gmail.com>
AuthorDate:    Tue, 20 May 2025 09:06:57 +01:00
Committer:     Peter Zijlstra <peterz@infradead.org>
CommitterDate: Wed, 21 May 2025 13:57:41 +02:00

selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized"

There is a spelling mistake in a fail error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: https://lore.kernel.org/r/20250520080657.30726-1-colin.i.king@gmail.com
---
 tools/testing/selftests/futex/functional/futex_numa_mpol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/futex/functional/futex_numa_mpol.c b/tools/testing/selftests/futex/functional/futex_numa_mpol.c
index d18949e..20a9d3e 100644
--- a/tools/testing/selftests/futex/functional/futex_numa_mpol.c
+++ b/tools/testing/selftests/futex/functional/futex_numa_mpol.c
@@ -180,7 +180,7 @@ int main(int argc, char *argv[])
 	test_futex(futex_ptr, 0);
 
 	if (futex_numa->numa == FUTEX_NO_NODE)
-		ksft_exit_fail_msg("NUMA node is left unitiliazed\n");
+		ksft_exit_fail_msg("NUMA node is left uninitialized\n");
 
 	ksft_print_msg("Memory too small\n");
 	test_futex(futex_ptr + mem_size - 4, 1);

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

end of thread, other threads:[~2025-05-21 12:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-20  8:06 [PATCH][next] selftests/futex: Fix spelling mistake "unitiliazed" -> "uninitialized" Colin Ian King
2025-05-20  8:51 ` Sebastian Andrzej Siewior
2025-05-21 12:06 ` [tip: locking/futex] " tip-bot2 for Colin Ian King

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