* [PATCH] docs: fix typos in kernel documentation
@ 2026-04-14 8:45 fru1tworld
2026-04-14 12:54 ` Jonathan Corbet
2026-04-15 0:12 ` [PATCH v2] " fru1tworld
0 siblings, 2 replies; 3+ messages in thread
From: fru1tworld @ 2026-04-14 8:45 UTC (permalink / raw)
To: corbet; +Cc: skhan, linux-doc, fru1tworld
reinitalizes => reinitializes
unpriviledged => unprivileged
the the => the (duplicated word)
sub-struture => sub-structure
Signed-off-by: fru1tworld <fruitworld.planet@gmail.com>
---
Documentation/block/data-integrity.rst | 2 +-
Documentation/core-api/list.rst | 2 +-
Documentation/core-api/real-time/differences.rst | 2 +-
Documentation/gpu/drm-uapi.rst | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Documentation/block/data-integrity.rst b/Documentation/block/data-integrity.rst
index 99905e880..b7b10c8ab 100644
--- a/Documentation/block/data-integrity.rst
+++ b/Documentation/block/data-integrity.rst
@@ -154,7 +154,7 @@ bio_free() will automatically free the bip.
----------------
Block devices can set up the integrity information in the integrity
-sub-struture of the queue_limits structure.
+sub-structure of the queue_limits structure.
Layered block devices will need to pick a profile that's appropriate
for all subdevices. queue_limits_stack_integrity() can help with that. DM
diff --git a/Documentation/core-api/list.rst b/Documentation/core-api/list.rst
index 241464ca0..4819343a2 100644
--- a/Documentation/core-api/list.rst
+++ b/Documentation/core-api/list.rst
@@ -752,7 +752,7 @@ This is because list_splice() did not reinitialize the list_head it took
entries from, leaving its pointer pointing into what is now a different list.
If we want to avoid this situation, list_splice_init() can be used. It does the
-same thing as list_splice(), except reinitalizes the donor list_head after the
+same thing as list_splice(), except reinitializes the donor list_head after the
transplant.
Concurrency considerations
diff --git a/Documentation/core-api/real-time/differences.rst b/Documentation/core-api/real-time/differences.rst
index 83ec9aa1c..a129570da 100644
--- a/Documentation/core-api/real-time/differences.rst
+++ b/Documentation/core-api/real-time/differences.rst
@@ -213,7 +213,7 @@ to suspend until the callback completes, ensuring forward progress without
risking livelock.
In order to solve the problem at the API level, the sequence locks were extended
-to allow a proper handover between the the spinning reader and the maybe
+to allow a proper handover between the spinning reader and the maybe
blocked writer.
Sequence locks
diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
index d98428a59..14ecaf98d 100644
--- a/Documentation/gpu/drm-uapi.rst
+++ b/Documentation/gpu/drm-uapi.rst
@@ -568,7 +568,7 @@ ENOSPC:
EPERM/EACCES:
Returned for an operation that is valid, but needs more privileges.
E.g. root-only or much more common, DRM master-only operations return
- this when called by unpriviledged clients. There's no clear
+ this when called by unprivileged clients. There's no clear
difference between EACCES and EPERM.
ENODEV:
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] docs: fix typos in kernel documentation
2026-04-14 8:45 [PATCH] docs: fix typos in kernel documentation fru1tworld
@ 2026-04-14 12:54 ` Jonathan Corbet
2026-04-15 0:12 ` [PATCH v2] " fru1tworld
1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-04-14 12:54 UTC (permalink / raw)
To: fru1tworld; +Cc: skhan, linux-doc, fru1tworld
Thank you for working to improve our documentation.
fru1tworld <fruitworld.planet@gmail.com> writes:
> reinitalizes => reinitializes
> unpriviledged => unprivileged
> the the => the (duplicated word)
> sub-struture => sub-structure
These changes generally look OK, but...
> Signed-off-by: fru1tworld <fruitworld.planet@gmail.com>
We need a proper signoff with your real name, please.
> ---
> Documentation/block/data-integrity.rst | 2 +-
> Documentation/core-api/list.rst | 2 +-
> Documentation/core-api/real-time/differences.rst | 2 +-
This one has already been fixed; it's always best to prepare your
patches against docs-next or linux-next.
> Documentation/gpu/drm-uapi.rst | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
Thanks,
jon
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] docs: fix typos in kernel documentation
2026-04-14 8:45 [PATCH] docs: fix typos in kernel documentation fru1tworld
2026-04-14 12:54 ` Jonathan Corbet
@ 2026-04-15 0:12 ` fru1tworld
1 sibling, 0 replies; 3+ messages in thread
From: fru1tworld @ 2026-04-15 0:12 UTC (permalink / raw)
To: corbet; +Cc: skhan, linux-doc, Hyeonjin Kim
From: Hyeonjin Kim <fruitworld.planet@gmail.com>
reinitalizes => reinitializes
unpriviledged => unprivileged
sub-struture => sub-structure
Signed-off-by: Hyeonjin Kim <fruitworld.planet@gmail.com>
---
Documentation/block/data-integrity.rst | 2 +-
Documentation/core-api/list.rst | 2 +-
Documentation/gpu/drm-uapi.rst | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/block/data-integrity.rst b/Documentation/block/data-integrity.rst
index 99905e880a0e..b7b10c8abbcc 100644
--- a/Documentation/block/data-integrity.rst
+++ b/Documentation/block/data-integrity.rst
@@ -154,7 +154,7 @@ bio_free() will automatically free the bip.
----------------
Block devices can set up the integrity information in the integrity
-sub-struture of the queue_limits structure.
+sub-structure of the queue_limits structure.
Layered block devices will need to pick a profile that's appropriate
for all subdevices. queue_limits_stack_integrity() can help with that. DM
diff --git a/Documentation/core-api/list.rst b/Documentation/core-api/list.rst
index 86873ce9adbf..7ff112770c51 100644
--- a/Documentation/core-api/list.rst
+++ b/Documentation/core-api/list.rst
@@ -752,7 +752,7 @@ This is because list_splice() did not reinitialize the list_head it took
entries from, leaving its pointer pointing into what is now a different list.
If we want to avoid this situation, list_splice_init() can be used. It does the
-same thing as list_splice(), except reinitalizes the donor list_head after the
+same thing as list_splice(), except reinitializes the donor list_head after the
transplant.
Concurrency considerations
diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
index d98428a592f1..14ecaf98df90 100644
--- a/Documentation/gpu/drm-uapi.rst
+++ b/Documentation/gpu/drm-uapi.rst
@@ -568,7 +568,7 @@ ENOSPC:
EPERM/EACCES:
Returned for an operation that is valid, but needs more privileges.
E.g. root-only or much more common, DRM master-only operations return
- this when called by unpriviledged clients. There's no clear
+ this when called by unprivileged clients. There's no clear
difference between EACCES and EPERM.
ENODEV:
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-15 0:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-14 8:45 [PATCH] docs: fix typos in kernel documentation fru1tworld
2026-04-14 12:54 ` Jonathan Corbet
2026-04-15 0:12 ` [PATCH v2] " fru1tworld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox