* [PATCH v2 4/9] docs: device-mapper: fixed spelling mistakes in documentation
2025-08-12 20:49 ` [PATCH v2 3/9] docs: cgroup: " Soham Metha
@ 2025-08-12 20:49 ` Soham Metha
2025-08-14 13:58 ` Mikulas Patocka
2025-08-12 20:49 ` [PATCH v2 5/9] docs: alienware-wmi: fixed spelling mistake in admin guide Soham Metha
` (3 subsequent siblings)
4 siblings, 1 reply; 15+ messages in thread
From: Soham Metha @ 2025-08-12 20:49 UTC (permalink / raw)
To: linux-doc
Cc: linux-kernel-mentees, skhan, Soham Metha, Alasdair Kergon,
Mike Snitzer, Mikulas Patocka, Jonathan Corbet, Matthew Sakai
found/fixed the following typos
- flushs -> flushes
- explicitely -> explicitly
in `Documentation/admin-guide/device-mapper/delay.rst`, and
- approriate -> appropriate
in `Documentation/admin-guide/device-mapper/vdo-design.rst`
Signed-off-by: Soham Metha <sohammetha01@gmail.com>
---
Documentation/admin-guide/device-mapper/delay.rst | 8 ++++----
Documentation/admin-guide/device-mapper/vdo-design.rst | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Documentation/admin-guide/device-mapper/delay.rst b/Documentation/admin-guide/device-mapper/delay.rst
index 4d667228e744..a1e673c0e782 100644
--- a/Documentation/admin-guide/device-mapper/delay.rst
+++ b/Documentation/admin-guide/device-mapper/delay.rst
@@ -3,7 +3,7 @@ dm-delay
========
Device-Mapper's "delay" target delays reads and/or writes
-and/or flushs and optionally maps them to different devices.
+and/or flushes and optionally maps them to different devices.
Arguments::
@@ -18,7 +18,7 @@ Table line has to either have 3, 6 or 9 arguments:
to write and flush operations on optionally different write_device with
optionally different sector offset
-9: same as 6 arguments plus define flush_offset and flush_delay explicitely
+9: same as 6 arguments plus define flush_offset and flush_delay explicitly
on/with optionally different flush_device/flush_offset.
Offsets are specified in sectors.
@@ -40,7 +40,7 @@ Example scripts
#!/bin/sh
#
# Create mapped device delaying write and flush operations for 400ms and
- # splitting reads to device $1 but writes and flushs to different device $2
+ # splitting reads to device $1 but writes and flushes to different device $2
# to different offsets of 2048 and 4096 sectors respectively.
#
dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 2048 0 $2 4096 400"
@@ -48,7 +48,7 @@ Example scripts
::
#!/bin/sh
#
- # Create mapped device delaying reads for 50ms, writes for 100ms and flushs for 333ms
+ # Create mapped device delaying reads for 50ms, writes for 100ms and flushes for 333ms
# onto the same backing device at offset 0 sectors.
#
dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 0 50 $2 0 100 $1 0 333"
diff --git a/Documentation/admin-guide/device-mapper/vdo-design.rst b/Documentation/admin-guide/device-mapper/vdo-design.rst
index 3cd59decbec0..faa0ecd4a5ae 100644
--- a/Documentation/admin-guide/device-mapper/vdo-design.rst
+++ b/Documentation/admin-guide/device-mapper/vdo-design.rst
@@ -600,7 +600,7 @@ lock and return itself to the pool.
All storage within vdo is managed as 4KB blocks, but it can accept writes
as small as 512 bytes. Processing a write that is smaller than 4K requires
a read-modify-write operation that reads the relevant 4K block, copies the
-new data over the approriate sectors of the block, and then launches a
+new data over the appropriate sectors of the block, and then launches a
write operation for the modified data block. The read and write stages of
this operation are nearly identical to the normal read and write
operations, and a single data_vio is used throughout this operation.
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v2 4/9] docs: device-mapper: fixed spelling mistakes in documentation
2025-08-12 20:49 ` [PATCH v2 4/9] docs: device-mapper: " Soham Metha
@ 2025-08-14 13:58 ` Mikulas Patocka
0 siblings, 0 replies; 15+ messages in thread
From: Mikulas Patocka @ 2025-08-14 13:58 UTC (permalink / raw)
To: Soham Metha
Cc: linux-doc, linux-kernel-mentees, skhan, Alasdair Kergon,
Mike Snitzer, Jonathan Corbet, Matthew Sakai
Applied, thanks.
Mikulas
On Wed, 13 Aug 2025, Soham Metha wrote:
> found/fixed the following typos
>
> - flushs -> flushes
> - explicitely -> explicitly
>
> in `Documentation/admin-guide/device-mapper/delay.rst`, and
>
> - approriate -> appropriate
>
> in `Documentation/admin-guide/device-mapper/vdo-design.rst`
>
> Signed-off-by: Soham Metha <sohammetha01@gmail.com>
> ---
> Documentation/admin-guide/device-mapper/delay.rst | 8 ++++----
> Documentation/admin-guide/device-mapper/vdo-design.rst | 2 +-
> 2 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/Documentation/admin-guide/device-mapper/delay.rst b/Documentation/admin-guide/device-mapper/delay.rst
> index 4d667228e744..a1e673c0e782 100644
> --- a/Documentation/admin-guide/device-mapper/delay.rst
> +++ b/Documentation/admin-guide/device-mapper/delay.rst
> @@ -3,7 +3,7 @@ dm-delay
> ========
>
> Device-Mapper's "delay" target delays reads and/or writes
> -and/or flushs and optionally maps them to different devices.
> +and/or flushes and optionally maps them to different devices.
>
> Arguments::
>
> @@ -18,7 +18,7 @@ Table line has to either have 3, 6 or 9 arguments:
> to write and flush operations on optionally different write_device with
> optionally different sector offset
>
> -9: same as 6 arguments plus define flush_offset and flush_delay explicitely
> +9: same as 6 arguments plus define flush_offset and flush_delay explicitly
> on/with optionally different flush_device/flush_offset.
>
> Offsets are specified in sectors.
> @@ -40,7 +40,7 @@ Example scripts
> #!/bin/sh
> #
> # Create mapped device delaying write and flush operations for 400ms and
> - # splitting reads to device $1 but writes and flushs to different device $2
> + # splitting reads to device $1 but writes and flushes to different device $2
> # to different offsets of 2048 and 4096 sectors respectively.
> #
> dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 2048 0 $2 4096 400"
> @@ -48,7 +48,7 @@ Example scripts
> ::
> #!/bin/sh
> #
> - # Create mapped device delaying reads for 50ms, writes for 100ms and flushs for 333ms
> + # Create mapped device delaying reads for 50ms, writes for 100ms and flushes for 333ms
> # onto the same backing device at offset 0 sectors.
> #
> dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 0 50 $2 0 100 $1 0 333"
> diff --git a/Documentation/admin-guide/device-mapper/vdo-design.rst b/Documentation/admin-guide/device-mapper/vdo-design.rst
> index 3cd59decbec0..faa0ecd4a5ae 100644
> --- a/Documentation/admin-guide/device-mapper/vdo-design.rst
> +++ b/Documentation/admin-guide/device-mapper/vdo-design.rst
> @@ -600,7 +600,7 @@ lock and return itself to the pool.
> All storage within vdo is managed as 4KB blocks, but it can accept writes
> as small as 512 bytes. Processing a write that is smaller than 4K requires
> a read-modify-write operation that reads the relevant 4K block, copies the
> -new data over the approriate sectors of the block, and then launches a
> +new data over the appropriate sectors of the block, and then launches a
> write operation for the modified data block. The read and write stages of
> this operation are nearly identical to the normal read and write
> operations, and a single data_vio is used throughout this operation.
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 5/9] docs: alienware-wmi: fixed spelling mistake in admin guide
2025-08-12 20:49 ` [PATCH v2 3/9] docs: cgroup: " Soham Metha
2025-08-12 20:49 ` [PATCH v2 4/9] docs: device-mapper: " Soham Metha
@ 2025-08-12 20:49 ` Soham Metha
2025-08-12 21:21 ` Kurt Borja
2025-08-12 20:49 ` [PATCH v2 6/9] docs: damon: fixed spelling mistakes in documentation Soham Metha
` (2 subsequent siblings)
4 siblings, 1 reply; 15+ messages in thread
From: Soham Metha @ 2025-08-12 20:49 UTC (permalink / raw)
To: linux-doc
Cc: linux-kernel-mentees, skhan, Soham Metha, Kurt Borja,
Jonathan Corbet
found/fixed the following typo
- aproximate -> approximate
in `Documentation/admin-guide/laptops/alienware-wmi.rst`
Signed-off-by: Soham Metha <sohammetha01@gmail.com>
---
Documentation/admin-guide/laptops/alienware-wmi.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/admin-guide/laptops/alienware-wmi.rst b/Documentation/admin-guide/laptops/alienware-wmi.rst
index 27a32a8057da..e532c60db8e2 100644
--- a/Documentation/admin-guide/laptops/alienware-wmi.rst
+++ b/Documentation/admin-guide/laptops/alienware-wmi.rst
@@ -105,7 +105,7 @@ information.
Manual fan control on the other hand, is not exposed directly by the AWCC
interface. Instead it let's us control a fan `boost` value. This `boost` value
-has the following aproximate behavior over the fan pwm:
+has the following approximate behavior over the fan pwm:
::
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v2 5/9] docs: alienware-wmi: fixed spelling mistake in admin guide
2025-08-12 20:49 ` [PATCH v2 5/9] docs: alienware-wmi: fixed spelling mistake in admin guide Soham Metha
@ 2025-08-12 21:21 ` Kurt Borja
[not found] ` <dea5d89e-d918-4d80-a205-38ca7c166cc3@gmail.com>
0 siblings, 1 reply; 15+ messages in thread
From: Kurt Borja @ 2025-08-12 21:21 UTC (permalink / raw)
To: Soham Metha, linux-doc; +Cc: linux-kernel-mentees, skhan, Jonathan Corbet
[-- Attachment #1: Type: text/plain, Size: 1245 bytes --]
Hi Soham,
On Tue Aug 12, 2025 at 3:49 PM -05, Soham Metha wrote:
> found/fixed the following typo
>
> - aproximate -> approximate
Thanks!
>
> in `Documentation/admin-guide/laptops/alienware-wmi.rst`
>
> Signed-off-by: Soham Metha <sohammetha01@gmail.com>
Please, Cc this to the appropriate subsystem and maintainers. You can
check MAINTAINERS or use ./scripts/get_maintainer.pl.
After that is addressed:
Reviewed-by: Kurt Borja <kuurtb@gmail.com>
> ---
> Documentation/admin-guide/laptops/alienware-wmi.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/admin-guide/laptops/alienware-wmi.rst b/Documentation/admin-guide/laptops/alienware-wmi.rst
> index 27a32a8057da..e532c60db8e2 100644
> --- a/Documentation/admin-guide/laptops/alienware-wmi.rst
> +++ b/Documentation/admin-guide/laptops/alienware-wmi.rst
> @@ -105,7 +105,7 @@ information.
>
> Manual fan control on the other hand, is not exposed directly by the AWCC
> interface. Instead it let's us control a fan `boost` value. This `boost` value
> -has the following aproximate behavior over the fan pwm:
> +has the following approximate behavior over the fan pwm:
>
> ::
>
--
~ Kurt
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 6/9] docs: damon: fixed spelling mistakes in documentation
2025-08-12 20:49 ` [PATCH v2 3/9] docs: cgroup: " Soham Metha
2025-08-12 20:49 ` [PATCH v2 4/9] docs: device-mapper: " Soham Metha
2025-08-12 20:49 ` [PATCH v2 5/9] docs: alienware-wmi: fixed spelling mistake in admin guide Soham Metha
@ 2025-08-12 20:49 ` Soham Metha
2025-08-12 21:12 ` SeongJae Park
2025-08-12 20:49 ` [PATCH v2 7/9] docs: loongarch: fixed spelling mistake " Soham Metha
2025-08-12 20:52 ` [PATCH v2 3/9] docs: cgroup: fixed spelling mistakes " Tejun Heo
4 siblings, 1 reply; 15+ messages in thread
From: Soham Metha @ 2025-08-12 20:49 UTC (permalink / raw)
To: linux-doc
Cc: linux-kernel-mentees, skhan, Soham Metha, SeongJae Park,
Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet
found/fixed the following typos
- directores -> directories
in `Documentation/admin-guide/mm/damon/usage.rst`, and
- multipled -> multiplied
in `Documentation/mm/damon/design.rst`.
Signed-off-by: Soham Metha <sohammetha01@gmail.com>
---
Documentation/admin-guide/mm/damon/usage.rst | 2 +-
Documentation/mm/damon/design.rst | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/admin-guide/mm/damon/usage.rst b/Documentation/admin-guide/mm/damon/usage.rst
index ff3a2dda1f02..5cd42d428c89 100644
--- a/Documentation/admin-guide/mm/damon/usage.rst
+++ b/Documentation/admin-guide/mm/damon/usage.rst
@@ -357,7 +357,7 @@ The directory for the :ref:`quotas <damon_design_damos_quotas>` of the given
DAMON-based operation scheme.
Under ``quotas`` directory, four files (``ms``, ``bytes``,
-``reset_interval_ms``, ``effective_bytes``) and two directores (``weights`` and
+``reset_interval_ms``, ``effective_bytes``) and two directories (``weights`` and
``goals``) exist.
You can set the ``time quota`` in milliseconds, ``size quota`` in bytes, and
diff --git a/Documentation/mm/damon/design.rst b/Documentation/mm/damon/design.rst
index 03f8137256f5..de95cc74b0fe 100644
--- a/Documentation/mm/damon/design.rst
+++ b/Documentation/mm/damon/design.rst
@@ -364,7 +364,7 @@ The tuning is turned off by default, and need to be set explicitly by the user.
As a rule of thumbs and the Parreto principle, 4% access samples ratio target
is recommended. Note that Parreto principle (80/20 rule) has applied twice.
That is, assumes 4% (20% of 20%) DAMON-observed access events ratio (source)
-to capture 64% (80% multipled by 80%) real access events (outcomes).
+to capture 64% (80% multiplied by 80%) real access events (outcomes).
To know how user-space can use this feature via :ref:`DAMON sysfs interface
<sysfs_interface>`, refer to :ref:`intervals_goal <sysfs_scheme>` part of
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v2 6/9] docs: damon: fixed spelling mistakes in documentation
2025-08-12 20:49 ` [PATCH v2 6/9] docs: damon: fixed spelling mistakes in documentation Soham Metha
@ 2025-08-12 21:12 ` SeongJae Park
0 siblings, 0 replies; 15+ messages in thread
From: SeongJae Park @ 2025-08-12 21:12 UTC (permalink / raw)
To: Soham Metha
Cc: SeongJae Park, linux-doc, linux-kernel-mentees, skhan,
Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet, damon
+ damon@lists.linux.dev
On Wed, 13 Aug 2025 02:19:49 +0530 Soham Metha <sohammetha01@gmail.com> wrote:
> found/fixed the following typos
>
> - directores -> directories
>
> in `Documentation/admin-guide/mm/damon/usage.rst`, and
>
> - multipled -> multiplied
>
> in `Documentation/mm/damon/design.rst`.
>
> Signed-off-by: Soham Metha <sohammetha01@gmail.com>
Thank you for finding and fixing this!
Reviewed-by: SeongJae Park <sj@kernel.org>
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 7/9] docs: loongarch: fixed spelling mistake in documentation
2025-08-12 20:49 ` [PATCH v2 3/9] docs: cgroup: " Soham Metha
` (2 preceding siblings ...)
2025-08-12 20:49 ` [PATCH v2 6/9] docs: damon: fixed spelling mistakes in documentation Soham Metha
@ 2025-08-12 20:49 ` Soham Metha
2025-08-12 20:52 ` [PATCH v2 3/9] docs: cgroup: fixed spelling mistakes " Tejun Heo
4 siblings, 0 replies; 15+ messages in thread
From: Soham Metha @ 2025-08-12 20:49 UTC (permalink / raw)
To: linux-doc
Cc: linux-kernel-mentees, skhan, Soham Metha, Huacai Chen,
WANG Xuerui, Jonathan Corbet
found/fixed the following typo
- entension -> extension
in `Documentation/arch/loongarch/irq-chip-model.rst`
Signed-off-by: Soham Metha <sohammetha01@gmail.com>
---
Documentation/arch/loongarch/irq-chip-model.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/arch/loongarch/irq-chip-model.rst b/Documentation/arch/loongarch/irq-chip-model.rst
index a7ecce11e445..94ed2858a570 100644
--- a/Documentation/arch/loongarch/irq-chip-model.rst
+++ b/Documentation/arch/loongarch/irq-chip-model.rst
@@ -139,7 +139,7 @@ Feature EXTIOI_HAS_INT_ENCODE is part of standard EIOINTC. If it is 1, it
indicates that CPU Interrupt Pin selection can be normal method rather than
bitmap method, so interrupt can be routed to IP0 - IP15.
-Feature EXTIOI_HAS_CPU_ENCODE is entension of V-EIOINTC. If it is 1, it
+Feature EXTIOI_HAS_CPU_ENCODE is extension of V-EIOINTC. If it is 1, it
indicates that CPU selection can be normal method rather than bitmap method,
so interrupt can be routed to CPU0 - CPU255.
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v2 3/9] docs: cgroup: fixed spelling mistakes in documentation
2025-08-12 20:49 ` [PATCH v2 3/9] docs: cgroup: " Soham Metha
` (3 preceding siblings ...)
2025-08-12 20:49 ` [PATCH v2 7/9] docs: loongarch: fixed spelling mistake " Soham Metha
@ 2025-08-12 20:52 ` Tejun Heo
4 siblings, 0 replies; 15+ messages in thread
From: Tejun Heo @ 2025-08-12 20:52 UTC (permalink / raw)
To: Soham Metha
Cc: linux-doc, linux-kernel-mentees, skhan, Johannes Weiner,
Michal Koutný, Jonathan Corbet
On Wed, Aug 13, 2025 at 02:19:46AM +0530, Soham Metha wrote:
> found/fixed the following typo
>
> - Availablity -> Availability
>
> in `Documentation/admin-guide/cgroup-v2.rst`
>
> Signed-off-by: Soham Metha <sohammetha01@gmail.com>
Applied to cgroup/for-6.17-fixes.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 15+ messages in thread