All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] xfs_io: add missed inode command into man page
@ 2017-04-24  5:02 Zorro Lang
  2017-05-02 23:13 ` [PATCH v2 1/2] xfs_io: add missed inode command into man page\ Darrick J. Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Zorro Lang @ 2017-04-24  5:02 UTC (permalink / raw)
  To: linux-xfs

There's an "inode" command in xfs_io, it's used to query physical
information about an inode. But there's not any information about
it in xfs_io and other related man pages. So document this command
in the xfs_io man page now.

Signed-off-by: Zorro Lang <zlang@redhat.com>
---

Hi,

This V2 follow Eric's suggestion, changed some description, and moved
the inode command from "FILE I/O" section to "OTHER COMMANDS" section.

Thanks,
Zorro

 man/man8/xfs_io.8 | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
index 19e1ae4..a7c2a1e 100644
--- a/man/man8/xfs_io.8
+++ b/man/man8/xfs_io.8
@@ -923,6 +923,30 @@ verbose output will be printed.
 .RE
 .IP
 .B [NOTE: Not currently operational on Linux.]
+.RE
+.PD
+.TP
+.BI "inode  [ [ -n ] " number " ] [ -v ]"
+The inode command queries physical information about an inode. With
+no arguments, it will return 1 or 0, indicating whether or not if any
+inode numbers greater than 32 bits are currently in use in the filesystem.
+If given an inode
+.I number
+as an argument, then inode command will return this inode
+.I number
+if it's in use, or 0 if not. With
+.BI \-n " number"
+, the next used inode number after this
+.I number
+will be returned, or 0 if can't find the next one. With
+.B \-v
+the command will also report the number of bits (32 or 64) used by the
+inode
+.I number
+printed in the result; if no inode
+.I number
+was specified on the commandline, the maximum possible inode number in
+the system will be printed along with its size.
 .PD
 .TP
 .BI "set_encpolicy [ \-c " mode " ] [ \-n " mode " ] [ \-f " flags " ] [ \-v " version " ] [ " keydesc " ]
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2 1/2] xfs_io: add missed inode command into man page\
  2017-04-24  5:02 [PATCH v2 1/2] xfs_io: add missed inode command into man page Zorro Lang
@ 2017-05-02 23:13 ` Darrick J. Wong
  2017-05-02 23:34   ` Eric Sandeen
  0 siblings, 1 reply; 3+ messages in thread
From: Darrick J. Wong @ 2017-05-02 23:13 UTC (permalink / raw)
  To: Zorro Lang; +Cc: linux-xfs

On Mon, Apr 24, 2017 at 01:02:07PM +0800, Zorro Lang wrote:
> There's an "inode" command in xfs_io, it's used to query physical
> information about an inode. But there's not any information about
> it in xfs_io and other related man pages. So document this command
> in the xfs_io man page now.
> 
> Signed-off-by: Zorro Lang <zlang@redhat.com>
> ---
> 
> Hi,
> 
> This V2 follow Eric's suggestion, changed some description, and moved
> the inode command from "FILE I/O" section to "OTHER COMMANDS" section.
> 
> Thanks,
> Zorro
> 
>  man/man8/xfs_io.8 | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
> index 19e1ae4..a7c2a1e 100644
> --- a/man/man8/xfs_io.8
> +++ b/man/man8/xfs_io.8
> @@ -923,6 +923,30 @@ verbose output will be printed.
>  .RE
>  .IP
>  .B [NOTE: Not currently operational on Linux.]
> +.RE
> +.PD
> +.TP
> +.BI "inode  [ [ -n ] " number " ] [ -v ]"
> +The inode command queries physical information about an inode. With
> +no arguments, it will return 1 or 0, indicating whether or not if any

"...whether or not any..."

> +inode numbers greater than 32 bits are currently in use in the filesystem.
> +If given an inode
> +.I number
> +as an argument, then inode command will return this inode

"..as an argument, the command will return the same inode number..."

> +.I number
> +if it's in use, or 0 if not. With

"..if it is in use..."

> +.BI \-n " number"
> +, the next used inode number after this
> +.I number
> +will be returned, or 0 if can't find the next one. With

"...or zero if the supplied inode number is the highest one in use."

> +.B \-v
> +the command will also report the number of bits (32 or 64) used by the
> +inode
> +.I number
> +printed in the result; if no inode
> +.I number
> +was specified on the commandline, the maximum possible inode number in

"..command line..."

> +the system will be printed along with its size.

/me also grumbles about not starting each sentence on a separate line.
Not enough to go fix all the manpages, though. :P

Otherwise,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

(FWIW if Eric wants to massage the patch on the way in rather than
waiting for another send-review cycle that's fine with me.)

--D

>  .PD
>  .TP
>  .BI "set_encpolicy [ \-c " mode " ] [ \-n " mode " ] [ \-f " flags " ] [ \-v " version " ] [ " keydesc " ]
> -- 
> 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2 1/2] xfs_io: add missed inode command into man page\
  2017-05-02 23:13 ` [PATCH v2 1/2] xfs_io: add missed inode command into man page\ Darrick J. Wong
@ 2017-05-02 23:34   ` Eric Sandeen
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Sandeen @ 2017-05-02 23:34 UTC (permalink / raw)
  To: Darrick J. Wong, Zorro Lang; +Cc: linux-xfs



On 5/2/17 6:13 PM, Darrick J. Wong wrote:
> (FWIW if Eric wants to massage the patch on the way in rather than
> waiting for another send-review cycle that's fine with me.)

I'll do that.

Thanks Darrick.

-Eric

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-02 23:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-24  5:02 [PATCH v2 1/2] xfs_io: add missed inode command into man page Zorro Lang
2017-05-02 23:13 ` [PATCH v2 1/2] xfs_io: add missed inode command into man page\ Darrick J. Wong
2017-05-02 23:34   ` Eric Sandeen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.