All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib/uuid: fix typo "reversion" to "revision" in comment
@ 2026-03-06 16:12 Josh Law
  2026-03-06 19:00 ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Josh Law @ 2026-03-06 16:12 UTC (permalink / raw)
  To: andriy.shevchenko, akpm; +Cc: linux-kernel, Josh Law

Fix a typo in __uuid_gen_common() where "reversion" (meaning to revert)
was used instead of "revision" when describing the UUID variant field.

Signed-off-by: Josh Law <objecting@objecting.org>
---
 lib/uuid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/uuid.c b/lib/uuid.c
index e8543c668dc7..128a51f1879b 100644
--- a/lib/uuid.c
+++ b/lib/uuid.c
@@ -54,7 +54,7 @@ EXPORT_SYMBOL(generate_random_guid);
 static void __uuid_gen_common(__u8 b[16])
 {
 	get_random_bytes(b, 16);
-	/* reversion 0b10 */
+	/* revision 0b10 */
 	b[8] = (b[8] & 0x3F) | 0x80;
 }
 
-- 
2.43.0


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

end of thread, other threads:[~2026-03-06 19:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-06 16:12 [PATCH] lib/uuid: fix typo "reversion" to "revision" in comment Josh Law
2026-03-06 19:00 ` Andy Shevchenko
2026-03-06 19:03   ` Josh Law
2026-03-06 19:07     ` Andy Shevchenko
2026-03-06 19:15     ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.