public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Eric Sandeen <sandeen@sandeen.net>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 9/9] man: create a separate xfs shutdown ioctl manpage
Date: Fri, 5 Jul 2019 10:13:03 -0700	[thread overview]
Message-ID: <20190705171303.GJ1404256@magnolia> (raw)
In-Reply-To: <d00e8961-c6f0-4adb-9b83-4750a15e97b1@sandeen.net>

On Fri, Jul 05, 2019 at 11:08:54AM -0500, Eric Sandeen wrote:
> On 6/20/19 11:51 AM, Darrick J. Wong wrote:
> > From: Darrick J. Wong <darrick.wong@oracle.com>
> > 
> > Create a separate manual page for the xfs shutdown ioctl so we can
> > document how it works.
> > 
> > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > ---
> >  man/man2/ioctl_xfs_goingdown.2 |   63 ++++++++++++++++++++++++++++++++++++++++
> >  man/man3/xfsctl.3              |    7 ++++
> >  2 files changed, 70 insertions(+)
> >  create mode 100644 man/man2/ioctl_xfs_goingdown.2
> > 
> > 
> > diff --git a/man/man2/ioctl_xfs_goingdown.2 b/man/man2/ioctl_xfs_goingdown.2
> > new file mode 100644
> > index 00000000..bedc85c8
> > --- /dev/null
> > +++ b/man/man2/ioctl_xfs_goingdown.2
> > @@ -0,0 +1,63 @@
> > +.\" Copyright (c) 2019, Oracle.  All rights reserved.
> > +.\"
> > +.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
> > +.\" SPDX-License-Identifier: GPL-2.0+
> > +.\" %%%LICENSE_END
> > +.TH IOCTL-XFS-GOINGDOWN 2 2019-06-17 "XFS"
> > +.SH NAME
> > +ioctl_xfs_goingdown \- shut down an XFS filesystem
> > +.SH SYNOPSIS
> > +.br
> > +.B #include <xfs/xfs_fs.h>
> > +.PP
> > +.BI "int ioctl(int " fd ", XFS_IOC_GOINGDOWN, uint32_t " flags );
> > +.SH DESCRIPTION
> > +Shuts down a live XFS filesystem.
> > +This is a software initiated hard shutdown and should be avoided whenever
> > +possible.
> > +After this call completes, the filesystem will be totally unusable and must be
> > +unmounted.
> 
> That almost sounds permanently destructive.  Perhaps:
> 
> "... will be totally unusable until the filesystem has been unmounted and remounted."
> 
> ?

Sounds good to me.

> > +
> > +.PP
> > +.I flags
> > +can be one of the following:
> > +.RS 0.4i
> > +.TP
> > +.B XFS_FSOP_GOING_FLAGS_DEFAULT
> > +Flush all dirty data and in-core state to disk, flush pending transactions to
> > +the log, and shut down.
> 
> What exactly do we mean by "in-core state" here?  I'm not sure the average
> reader will know (I'm not sure I know)

Hm... really it's any dirty cached state, like ... unflushed inodes and
dquots, dirty file data, etc.  I didn't want to commit to that level of
specificity though.

> > +.TP
> > +.B XFS_FSOP_GOING_FLAGS_LOGFLUSH
> > +Flush all pending transactions to the log and shut down, leaving all dirty
> > +data unwritten.
> > +.TP
> > +.B XFS_FSOP_GOING_FLAGS_NOLOGFLUSH
> > +Shut down immediately, without writing pending transactions or dirty data
> > +to disk.
> > +
> > +.SH RETURN VALUE
> > +On error, \-1 is returned, and
> > +.I errno
> > +is set to indicate the error.
> > +.PP
> > +.SH ERRORS
> > +Error codes can be one of, but are not limited to, the following:
> 
> Hm crud, now I wonder about auditing all your stated error codes.
> EPERM, EFAULT, and EINVAL seem to be the only options for this
> particular call.  Maybe that can be a 2nd cleanup, documenting
> an error code that won't happen is harmless...

<urk> Ok, I'll go do that. :)

> > +.TP
> > +.B EFSBADCRC
> > +Metadata checksum validation failed while performing the query.
> > +.TP
> > +.B EFSCORRUPTED
> > +Metadata corruption was encountered while performing the query.
> > +.TP
> > +.B EINVAL
> > +The specified allocation group number is not valid for this filesystem.

This one definitely was copypasta error. :(

--D

> > +.TP
> > +.B EIO
> > +An I/O error was encountered while performing the query.
> > +.TP
> > +.B EPERM
> > +Caller did not have permission to shut down the filesystem.
> > +.SH CONFORMING TO
> > +This API is specific to XFS filesystem on the Linux kernel.
> > +.SH SEE ALSO
> > +.BR ioctl (2)
> > diff --git a/man/man3/xfsctl.3 b/man/man3/xfsctl.3
> > index 077dd411..7e6588b8 100644
> > --- a/man/man3/xfsctl.3
> > +++ b/man/man3/xfsctl.3
> > @@ -365,6 +365,12 @@ See
> >  for more information.
> >  Save yourself a lot of frustration and avoid these ioctls.
> >  
> > +.TP
> > +.B XFS_IOC_GOINGDOWN
> > +See
> > +.BR ioctl_xfs_goingdown (2)
> > +for more information.
> > +
> >  .PP
> >  .nf
> >  .B XFS_IOC_THAW
> > @@ -388,6 +394,7 @@ as they are not of general use to applications.
> >  .BR ioctl_xfs_fscounts (2),
> >  .BR ioctl_xfs_getresblks (2),
> >  .BR ioctl_xfs_getbmap (2),
> > +.BR ioctl_xfs_goingdown (2),
> >  .BR fstatfs (2),
> >  .BR statfs (2),
> >  .BR xfs (5),
> > 

  reply	other threads:[~2019-07-05 17:13 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-20 16:50 [PATCH v2 0/9] xfsprogs: document the ioctls scrub uses Darrick J. Wong
2019-06-20 16:50 ` [PATCH 1/9] man: create a separate GETXATTR/SETXATTR ioctl manpage Darrick J. Wong
2019-07-03 22:48   ` Eric Sandeen
2019-07-04  2:04     ` Darrick J. Wong
2019-07-04  3:43       ` Eric Sandeen
2019-06-20 16:51 ` [PATCH 2/9] man: create a separate GEOMETRY " Darrick J. Wong
2019-07-05 15:01   ` Eric Sandeen
2019-07-05 16:25     ` Darrick J. Wong
2019-06-20 16:51 ` [PATCH 3/9] man: create a separate FSBULKSTAT " Darrick J. Wong
2019-07-05 16:22   ` Eric Sandeen
2019-06-20 16:51 ` [PATCH 4/9] man: link to the SCRUB_METADATA ioctl manpage from xfsctl.3 Darrick J. Wong
2019-07-05 16:23   ` Eric Sandeen
2019-06-20 16:51 ` [PATCH 5/9] man: create a separate INUMBERS ioctl manpage Darrick J. Wong
2019-07-05 15:16   ` Eric Sandeen
2019-06-20 16:51 ` [PATCH 6/9] man: create a separate FSCOUNTS " Darrick J. Wong
2019-07-05 15:15   ` Eric Sandeen
2019-06-20 16:51 ` [PATCH 7/9] man: create a separate RESBLKS " Darrick J. Wong
2019-07-05 16:02   ` Eric Sandeen
2019-07-05 17:09     ` Darrick J. Wong
2019-06-20 16:51 ` [PATCH 8/9] man: create a separate GETBMAPX/GETBMAPA/GETBMAP " Darrick J. Wong
2019-07-05 15:53   ` Eric Sandeen
2019-07-05 17:19     ` Darrick J. Wong
2019-06-20 16:51 ` [PATCH 9/9] man: create a separate xfs shutdown " Darrick J. Wong
2019-07-05 16:08   ` Eric Sandeen
2019-07-05 17:13     ` Darrick J. Wong [this message]
2019-07-05 17:58       ` Eric Sandeen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190705171303.GJ1404256@magnolia \
    --to=darrick.wong@oracle.com \
    --cc=linux-xfs@vger.kernel.org \
    --cc=sandeen@sandeen.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox