* [PATCH] docs: fix spelling and grammar in atomic_writes
@ 2025-08-19 12:46 Mallikarjun Thammanavar
2025-08-19 14:48 ` Darrick J. Wong
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mallikarjun Thammanavar @ 2025-08-19 12:46 UTC (permalink / raw)
To: tytso
Cc: adilger.kernel, corbet, linux-ext4, linux-doc, linux-kernel,
Mallikarjun Thammanavar
Fix minor spelling and grammatical issues in the ext4 atomic_writes
documentation.
Signed-off-by: Mallikarjun Thammanavar <mallikarjunst09@gmail.com>
---
Documentation/filesystems/ext4/atomic_writes.rst | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/filesystems/ext4/atomic_writes.rst b/Documentation/filesystems/ext4/atomic_writes.rst
index f65767df3620..b614b5ffe76b 100644
--- a/Documentation/filesystems/ext4/atomic_writes.rst
+++ b/Documentation/filesystems/ext4/atomic_writes.rst
@@ -14,7 +14,7 @@ I/O) on regular files with extents, provided the underlying storage device
supports hardware atomic writes. This is supported in the following two ways:
1. **Single-fsblock Atomic Writes**:
- EXT4's supports atomic write operations with a single filesystem block since
+ EXT4 supports atomic write operations with a single filesystem block since
v6.13. In this the atomic write unit minimum and maximum sizes are both set
to filesystem blocksize.
e.g. doing atomic write of 16KB with 16KB filesystem blocksize on 64KB
@@ -50,7 +50,7 @@ Multi-fsblock Implementation Details
The bigalloc feature changes ext4 to allocate in units of multiple filesystem
blocks, also known as clusters. With bigalloc each bit within block bitmap
-represents cluster (power of 2 number of blocks) rather than individual
+represents a cluster (power of 2 number of blocks) rather than individual
filesystem blocks.
EXT4 supports multi-fsblock atomic writes with bigalloc, subject to the
following constraints. The minimum atomic write size is the larger of the fs
@@ -189,7 +189,7 @@ The write must be aligned to the filesystem's block size and not exceed the
filesystem's maximum atomic write unit size.
See ``generic_atomic_write_valid()`` for more details.
-``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provides following
+``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provide following
details:
* ``stx_atomic_write_unit_min``: Minimum size of an atomic write request.
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: fix spelling and grammar in atomic_writes
2025-08-19 12:46 [PATCH] docs: fix spelling and grammar in atomic_writes Mallikarjun Thammanavar
@ 2025-08-19 14:48 ` Darrick J. Wong
2025-08-19 17:21 ` Randy Dunlap
2025-08-29 22:32 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Darrick J. Wong @ 2025-08-19 14:48 UTC (permalink / raw)
To: Mallikarjun Thammanavar
Cc: tytso, adilger.kernel, corbet, linux-ext4, linux-doc,
linux-kernel
On Tue, Aug 19, 2025 at 12:46:04PM +0000, Mallikarjun Thammanavar wrote:
> Fix minor spelling and grammatical issues in the ext4 atomic_writes
> documentation.
>
> Signed-off-by: Mallikarjun Thammanavar <mallikarjunst09@gmail.com>
Much improved, thanks!
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> ---
> Documentation/filesystems/ext4/atomic_writes.rst | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/filesystems/ext4/atomic_writes.rst b/Documentation/filesystems/ext4/atomic_writes.rst
> index f65767df3620..b614b5ffe76b 100644
> --- a/Documentation/filesystems/ext4/atomic_writes.rst
> +++ b/Documentation/filesystems/ext4/atomic_writes.rst
> @@ -14,7 +14,7 @@ I/O) on regular files with extents, provided the underlying storage device
> supports hardware atomic writes. This is supported in the following two ways:
>
> 1. **Single-fsblock Atomic Writes**:
> - EXT4's supports atomic write operations with a single filesystem block since
> + EXT4 supports atomic write operations with a single filesystem block since
> v6.13. In this the atomic write unit minimum and maximum sizes are both set
> to filesystem blocksize.
> e.g. doing atomic write of 16KB with 16KB filesystem blocksize on 64KB
> @@ -50,7 +50,7 @@ Multi-fsblock Implementation Details
>
> The bigalloc feature changes ext4 to allocate in units of multiple filesystem
> blocks, also known as clusters. With bigalloc each bit within block bitmap
> -represents cluster (power of 2 number of blocks) rather than individual
> +represents a cluster (power of 2 number of blocks) rather than individual
> filesystem blocks.
> EXT4 supports multi-fsblock atomic writes with bigalloc, subject to the
> following constraints. The minimum atomic write size is the larger of the fs
> @@ -189,7 +189,7 @@ The write must be aligned to the filesystem's block size and not exceed the
> filesystem's maximum atomic write unit size.
> See ``generic_atomic_write_valid()`` for more details.
>
> -``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provides following
> +``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provide following
> details:
>
> * ``stx_atomic_write_unit_min``: Minimum size of an atomic write request.
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: fix spelling and grammar in atomic_writes
2025-08-19 12:46 [PATCH] docs: fix spelling and grammar in atomic_writes Mallikarjun Thammanavar
2025-08-19 14:48 ` Darrick J. Wong
@ 2025-08-19 17:21 ` Randy Dunlap
2025-08-29 22:32 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2025-08-19 17:21 UTC (permalink / raw)
To: Mallikarjun Thammanavar, tytso
Cc: adilger.kernel, corbet, linux-ext4, linux-doc, linux-kernel
On 8/19/25 5:46 AM, Mallikarjun Thammanavar wrote:
> Fix minor spelling and grammatical issues in the ext4 atomic_writes
> documentation.
>
> Signed-off-by: Mallikarjun Thammanavar <mallikarjunst09@gmail.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
> Documentation/filesystems/ext4/atomic_writes.rst | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/filesystems/ext4/atomic_writes.rst b/Documentation/filesystems/ext4/atomic_writes.rst
> index f65767df3620..b614b5ffe76b 100644
> --- a/Documentation/filesystems/ext4/atomic_writes.rst
> +++ b/Documentation/filesystems/ext4/atomic_writes.rst
> @@ -14,7 +14,7 @@ I/O) on regular files with extents, provided the underlying storage device
> supports hardware atomic writes. This is supported in the following two ways:
>
> 1. **Single-fsblock Atomic Writes**:
> - EXT4's supports atomic write operations with a single filesystem block since
> + EXT4 supports atomic write operations with a single filesystem block since
> v6.13. In this the atomic write unit minimum and maximum sizes are both set
> to filesystem blocksize.
> e.g. doing atomic write of 16KB with 16KB filesystem blocksize on 64KB
> @@ -50,7 +50,7 @@ Multi-fsblock Implementation Details
>
> The bigalloc feature changes ext4 to allocate in units of multiple filesystem
> blocks, also known as clusters. With bigalloc each bit within block bitmap
> -represents cluster (power of 2 number of blocks) rather than individual
> +represents a cluster (power of 2 number of blocks) rather than individual
> filesystem blocks.
> EXT4 supports multi-fsblock atomic writes with bigalloc, subject to the
> following constraints. The minimum atomic write size is the larger of the fs
> @@ -189,7 +189,7 @@ The write must be aligned to the filesystem's block size and not exceed the
> filesystem's maximum atomic write unit size.
> See ``generic_atomic_write_valid()`` for more details.
>
> -``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provides following
> +``statx()`` system call with ``STATX_WRITE_ATOMIC`` flag can provide following
> details:
>
> * ``stx_atomic_write_unit_min``: Minimum size of an atomic write request.
--
~Randy
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: fix spelling and grammar in atomic_writes
2025-08-19 12:46 [PATCH] docs: fix spelling and grammar in atomic_writes Mallikarjun Thammanavar
2025-08-19 14:48 ` Darrick J. Wong
2025-08-19 17:21 ` Randy Dunlap
@ 2025-08-29 22:32 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2025-08-29 22:32 UTC (permalink / raw)
To: Mallikarjun Thammanavar, tytso
Cc: adilger.kernel, linux-ext4, linux-doc, linux-kernel,
Mallikarjun Thammanavar
Mallikarjun Thammanavar <mallikarjunst09@gmail.com> writes:
> Fix minor spelling and grammatical issues in the ext4 atomic_writes
> documentation.
>
> Signed-off-by: Mallikarjun Thammanavar <mallikarjunst09@gmail.com>
> ---
> Documentation/filesystems/ext4/atomic_writes.rst | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Applied, thanks.
jon
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-08-29 22:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-19 12:46 [PATCH] docs: fix spelling and grammar in atomic_writes Mallikarjun Thammanavar
2025-08-19 14:48 ` Darrick J. Wong
2025-08-19 17:21 ` Randy Dunlap
2025-08-29 22:32 ` Jonathan Corbet
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).