* [PATCH] Documentation: Fix documentation typos
@ 2025-08-21 18:51 Sahil Chandna
2025-08-21 19:09 ` Randy Dunlap
0 siblings, 1 reply; 3+ messages in thread
From: Sahil Chandna @ 2025-08-21 18:51 UTC (permalink / raw)
To: corbet, linux-doc, kent.overstreet, tj, cem
Cc: linux-bcachefs, cgroups, linux-xfs, linux-kernel, skhan,
chandna.linuxkernel
Fix several spelling mistakes in documentation:
- Availablity -> Availability
- heirarchy -> hierarchy
- maping -> mapping
Findings are based on v6.17-rc2.
Signed-off-by: Sahil Chandna <chandna.linuxkernel@gmail.com>
---
Documentation/admin-guide/cgroup-v2.rst | 2 +-
Documentation/filesystems/bcachefs/future/idle_work.rst | 6 +++---
Documentation/filesystems/xfs/xfs-online-fsck-design.rst | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Documentation/admin-guide/cgroup-v2.rst b/Documentation/admin-guide/cgroup-v2.rst
index d9d3cc7df348..29172f03b863 100644
--- a/Documentation/admin-guide/cgroup-v2.rst
+++ b/Documentation/admin-guide/cgroup-v2.rst
@@ -435,7 +435,7 @@ both cgroups.
Controlling Controllers
-----------------------
-Availablity
+Availability
~~~~~~~~~~~
A controller is available in a cgroup when it is supported by the kernel (i.e.,
diff --git a/Documentation/filesystems/bcachefs/future/idle_work.rst b/Documentation/filesystems/bcachefs/future/idle_work.rst
index 59a332509dcd..f1202113dde0 100644
--- a/Documentation/filesystems/bcachefs/future/idle_work.rst
+++ b/Documentation/filesystems/bcachefs/future/idle_work.rst
@@ -11,10 +11,10 @@ idle" so the system can go to sleep. We don't want to be dribbling out
background work while the system should be idle.
The complicating factor is that there are a number of background tasks, which
-form a heirarchy (or a digraph, depending on how you divide it up) - one
+form a hierarchy (or a digraph, depending on how you divide it up) - one
background task may generate work for another.
-Thus proper idle detection needs to model this heirarchy.
+Thus proper idle detection needs to model this hierarchy.
- Foreground writes
- Page cache writeback
@@ -51,7 +51,7 @@ IDLE REGIME
When the system becomes idle, we should start flushing our pending work
quicker so the system can go to sleep.
-Note that the definition of "idle" depends on where in the heirarchy a task
+Note that the definition of "idle" depends on where in the hierarchy a task
is - a task should start flushing work more quickly when the task above it has
stopped generating new work.
diff --git a/Documentation/filesystems/xfs/xfs-online-fsck-design.rst b/Documentation/filesystems/xfs/xfs-online-fsck-design.rst
index e231d127cd40..e872d480691b 100644
--- a/Documentation/filesystems/xfs/xfs-online-fsck-design.rst
+++ b/Documentation/filesystems/xfs/xfs-online-fsck-design.rst
@@ -4179,7 +4179,7 @@ When the exchange is initiated, the sequence of operations is as follows:
This will be discussed in more detail in subsequent sections.
If the filesystem goes down in the middle of an operation, log recovery will
-find the most recent unfinished maping exchange log intent item and restart
+find the most recent unfinished mapping exchange log intent item and restart
from there.
This is how atomic file mapping exchanges guarantees that an outside observer
will either see the old broken structure or the new one, and never a mismash of
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation: Fix documentation typos
2025-08-21 18:51 [PATCH] Documentation: Fix documentation typos Sahil Chandna
@ 2025-08-21 19:09 ` Randy Dunlap
2025-08-21 21:34 ` Kent Overstreet
0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2025-08-21 19:09 UTC (permalink / raw)
To: Sahil Chandna, corbet, linux-doc, kent.overstreet, tj, cem
Cc: linux-bcachefs, cgroups, linux-xfs, linux-kernel, skhan
On 8/21/25 11:51 AM, Sahil Chandna wrote:
> Fix several spelling mistakes in documentation:
>
> - Availablity -> Availability
> - heirarchy -> hierarchy
> - maping -> mapping
> Findings are based on v6.17-rc2.
>
> Signed-off-by: Sahil Chandna <chandna.linuxkernel@gmail.com>
> ---
> Documentation/admin-guide/cgroup-v2.rst | 2 +-
> Documentation/filesystems/bcachefs/future/idle_work.rst | 6 +++---
> Documentation/filesystems/xfs/xfs-online-fsck-design.rst | 2 +-
> 3 files changed, 5 insertions(+), 5 deletions(-)
>
Looks good, although there was just another patch that also fixed the maping/mapping
spelling for XFS.
And various maintainers might request that you split the patch up by
subsystem/filesystem (i.e., 3 patches here) unless Jon merges it as is.
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
thanks.
--
~Randy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation: Fix documentation typos
2025-08-21 19:09 ` Randy Dunlap
@ 2025-08-21 21:34 ` Kent Overstreet
0 siblings, 0 replies; 3+ messages in thread
From: Kent Overstreet @ 2025-08-21 21:34 UTC (permalink / raw)
To: Randy Dunlap
Cc: Sahil Chandna, corbet, linux-doc, tj, cem, linux-bcachefs,
cgroups, linux-xfs, linux-kernel, skhan
On Thu, Aug 21, 2025 at 12:09:57PM -0700, Randy Dunlap wrote:
>
>
> On 8/21/25 11:51 AM, Sahil Chandna wrote:
> > Fix several spelling mistakes in documentation:
> >
> > - Availablity -> Availability
> > - heirarchy -> hierarchy
> > - maping -> mapping
> > Findings are based on v6.17-rc2.
> >
> > Signed-off-by: Sahil Chandna <chandna.linuxkernel@gmail.com>
> > ---
> > Documentation/admin-guide/cgroup-v2.rst | 2 +-
> > Documentation/filesystems/bcachefs/future/idle_work.rst | 6 +++---
> > Documentation/filesystems/xfs/xfs-online-fsck-design.rst | 2 +-
> > 3 files changed, 5 insertions(+), 5 deletions(-)
> >
>
> Looks good, although there was just another patch that also fixed the maping/mapping
> spelling for XFS.
>
> And various maintainers might request that you split the patch up by
> subsystem/filesystem (i.e., 3 patches here) unless Jon merges it as is.
>
> Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
I'll take the bcachefs patch if it's split up.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-08-21 21:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-21 18:51 [PATCH] Documentation: Fix documentation typos Sahil Chandna
2025-08-21 19:09 ` Randy Dunlap
2025-08-21 21:34 ` Kent Overstreet
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).