* [PATCH] mke2fs.8.in: correct the sign of a block-size constraint.
@ 2010-07-24 22:01 Chris Frost
2010-07-25 4:55 ` Eric Sandeen
2010-07-29 16:59 ` [PATCH V2] mke2fs.8.in: clarify " Eric Sandeen
0 siblings, 2 replies; 5+ messages in thread
From: Chris Frost @ 2010-07-24 22:01 UTC (permalink / raw)
To: linux-ext4
Small but technical typo correction.
There may be more preferred mark ups (e.g., no space between the negative
sign and "block-sized") or expressions (e.g., absolute value instead of
negation).
Signed-off-by: Chris Frost <chris@frostnet.net>
---
misc/mke2fs.8.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/misc/mke2fs.8.in b/misc/mke2fs.8.in
index 45a99f8..05cfe17 100644
--- a/misc/mke2fs.8.in
+++ b/misc/mke2fs.8.in
@@ -177,7 +177,7 @@ is negative, then
.B mke2fs
will use heuristics to determine the
appropriate block size, with the constraint that the block size will be
-at least
+at least \-
.I block-size
bytes. This is useful for certain hardware devices which require that
the blocksize be a multiple of 2k.
--
1.7.0.4
--
Chris Frost
http://www.frostnet.net/chris/
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] mke2fs.8.in: correct the sign of a block-size constraint.
2010-07-24 22:01 [PATCH] mke2fs.8.in: correct the sign of a block-size constraint Chris Frost
@ 2010-07-25 4:55 ` Eric Sandeen
2010-07-29 4:11 ` Chris Frost
2010-07-29 16:59 ` [PATCH V2] mke2fs.8.in: clarify " Eric Sandeen
1 sibling, 1 reply; 5+ messages in thread
From: Eric Sandeen @ 2010-07-25 4:55 UTC (permalink / raw)
To: Chris Frost; +Cc: linux-ext4
Chris Frost wrote:
> Small but technical typo correction.
>
> There may be more preferred mark ups (e.g., no space between the negative
> sign and "block-sized") or expressions (e.g., absolute value instead of
> negation).
wow I didn't even know that behavior existed.
How about "If block-size is preceded by a negative sign ("-"), then mke2fs
will use heuristics to determine the appropriate block size, with the
constraint that the block size will be at least block-size bytes."
-Eric
>
> Signed-off-by: Chris Frost <chris@frostnet.net>
> ---
> misc/mke2fs.8.in | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/misc/mke2fs.8.in b/misc/mke2fs.8.in
> index 45a99f8..05cfe17 100644
> --- a/misc/mke2fs.8.in
> +++ b/misc/mke2fs.8.in
> @@ -177,7 +177,7 @@ is negative, then
> .B mke2fs
> will use heuristics to determine the
> appropriate block size, with the constraint that the block size will be
> -at least
> +at least \-
> .I block-size
> bytes. This is useful for certain hardware devices which require that
> the blocksize be a multiple of 2k.
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH V2] mke2fs.8.in: clarify the sign of a block-size constraint.
2010-07-24 22:01 [PATCH] mke2fs.8.in: correct the sign of a block-size constraint Chris Frost
2010-07-25 4:55 ` Eric Sandeen
@ 2010-07-29 16:59 ` Eric Sandeen
2010-07-31 0:40 ` Ted Ts'o
1 sibling, 1 reply; 5+ messages in thread
From: Eric Sandeen @ 2010-07-29 16:59 UTC (permalink / raw)
To: Chris Frost; +Cc: linux-ext4
This bit of the mke2fs manpage is slightly confusing:
-b block-size
Specify the size of blocks in bytes. <snip>
If block-size is negative, then mke2fs will use heuristics
to determine the appropriate block size, with the constraint
that the block size will be at least block-size bytes.
because it sounds like the block size will be at least a negative
number. Clarify just what the negative sign means.
Reported-by: Chris Frost <chris@frostnet.net>
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---
diff --git a/misc/mke2fs.8.in b/misc/mke2fs.8.in
index 45a99f8..b46e7e2 100644
--- a/misc/mke2fs.8.in
+++ b/misc/mke2fs.8.in
@@ -173,7 +173,7 @@ the expected usage of the filesystem (see the
.B \-T
option). If
.I block-size
-is negative, then
+is preceded by a negative sign ('-'), then
.B mke2fs
will use heuristics to determine the
appropriate block size, with the constraint that the block size will be
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH V2] mke2fs.8.in: clarify the sign of a block-size constraint.
2010-07-29 16:59 ` [PATCH V2] mke2fs.8.in: clarify " Eric Sandeen
@ 2010-07-31 0:40 ` Ted Ts'o
0 siblings, 0 replies; 5+ messages in thread
From: Ted Ts'o @ 2010-07-31 0:40 UTC (permalink / raw)
To: Eric Sandeen; +Cc: Chris Frost, linux-ext4
On Thu, Jul 29, 2010 at 11:59:42AM -0500, Eric Sandeen wrote:
> This bit of the mke2fs manpage is slightly confusing:
>
> -b block-size
> Specify the size of blocks in bytes. <snip>
> If block-size is negative, then mke2fs will use heuristics
> to determine the appropriate block size, with the constraint
> that the block size will be at least block-size bytes.
>
> because it sounds like the block size will be at least a negative
> number. Clarify just what the negative sign means.
>
> Reported-by: Chris Frost <chris@frostnet.net>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Applied, thanks.
- Ted
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-07-31 0:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-24 22:01 [PATCH] mke2fs.8.in: correct the sign of a block-size constraint Chris Frost
2010-07-25 4:55 ` Eric Sandeen
2010-07-29 4:11 ` Chris Frost
2010-07-29 16:59 ` [PATCH V2] mke2fs.8.in: clarify " Eric Sandeen
2010-07-31 0:40 ` Ted Ts'o
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).