From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Eric Sandeen <sandeen@sandeen.net>
Cc: sandeen@redhat.com, linux-xfs@vger.kernel.org,
Dave Chinner <dchinner@redhat.com>
Subject: Re: [PATCH 07/10] xfs_spaceman: add new speculative prealloc control
Date: Wed, 14 Jun 2017 09:39:45 -0700 [thread overview]
Message-ID: <20170614163945.GT4530@birch.djwong.org> (raw)
In-Reply-To: <3efe4542-1074-feef-6da8-d193741e7207@sandeen.net>
On Wed, Jun 14, 2017 at 10:05:33AM -0500, Eric Sandeen wrote:
> On 6/2/17 2:51 PM, Darrick J. Wong wrote:
> > From: Dave Chinner <dchinner@redhat.com>
> >
> > Add an control interface for purging speculative
> > preallocation via the new ioctls.
> >
> > Signed-off-by: Dave Chinner <dchinner@redhat.com>
> > [darrick: change xfsctl to ioctl]
> > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > ---
> > spaceman/Makefile | 2 -
> > spaceman/init.c | 1
> > spaceman/prealloc.c | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++
> > spaceman/space.h | 1
> > 4 files changed, 114 insertions(+), 1 deletion(-)
> > create mode 100644 spaceman/prealloc.c
> >
> >
> > diff --git a/spaceman/Makefile b/spaceman/Makefile
> > index c63a4fc..6aad746 100644
> > --- a/spaceman/Makefile
> > +++ b/spaceman/Makefile
> > @@ -7,7 +7,7 @@ include $(TOPDIR)/include/builddefs
> >
> > LTCOMMAND = xfs_spaceman
> > HFILES = init.h space.h
> > -CFILES = init.c file.c trim.c
> > +CFILES = init.c file.c prealloc.c trim.c
> >
> > LLDLIBS = $(LIBXCMD)
> > LTDEPENDENCIES = $(LIBXCMD)
> > diff --git a/spaceman/init.c b/spaceman/init.c
> > index 0958377..93a8a1e 100644
> > --- a/spaceman/init.c
> > +++ b/spaceman/init.c
> > @@ -39,6 +39,7 @@ init_commands(void)
> > {
> > file_init();
> > help_init();
> > + prealloc_init();
> > quit_init();
> > trim_init();
> > }
> > diff --git a/spaceman/prealloc.c b/spaceman/prealloc.c
> > new file mode 100644
> > index 0000000..71c0d80
> > --- /dev/null
> > +++ b/spaceman/prealloc.c
> > @@ -0,0 +1,111 @@
> > +/*
> > + * Copyright (c) 2012 Red Hat, Inc.
> > + * All Rights Reserved.
> > + *
> > + * This program is free software; you can redistribute it and/or
> > + * modify it under the terms of the GNU General Public License as
> > + * published by the Free Software Foundation.
> > + *
> > + * This program is distributed in the hope that it would be useful,
> > + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > + * GNU General Public License for more details.
> > + *
> > + * You should have received a copy of the GNU General Public License
> > + * along with this program; if not, write the Free Software Foundation,
> > + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
> > + */
> > +
> > +#include "libxfs.h"
> > +#include "command.h"
> > +#include "input.h"
> > +#include "init.h"
> > +#include "space.h"
> > +
> > +static cmdinfo_t prealloc_cmd;
> > +
> > +/*
> > + * Control preallocation amounts.
> > + */
> > +static int
> > +prealloc_f(
> > + int argc,
> > + char **argv)
> > +{
> > + struct xfs_fs_eofblocks eofb = {0};
> > + int c;
> > +
> > + eofb.eof_version = XFS_EOFBLOCKS_VERSION;
> > +
> > + while ((c = getopt(argc, argv, "g:m:p:su:")) != EOF) {
> > + switch (c) {
> > + case 'g':
> > + eofb.eof_flags |= XFS_EOF_FLAGS_GID;
> > + eofb.eof_gid = atoi(optarg);
> > + break;
> > + case 'u':
> > + eofb.eof_flags |= XFS_EOF_FLAGS_UID;
> > + eofb.eof_uid = atoi(optarg);
> > + break;
> > + case 'p':
> > + eofb.eof_flags |= XFS_EOF_FLAGS_PRID;
> > + eofb.eof_prid = atoi(optarg);
> > + break;
> > + case 's':
> > + eofb.eof_flags |= XFS_EOF_FLAGS_SYNC;
> > + break;
> > + case 'm':
> > + eofb.eof_flags |= XFS_EOF_FLAGS_MINFILESIZE;
> > + eofb.eof_min_file_size = cvtnum(file->geom.blocksize,
> > + file->geom.sectsize,
> > + optarg);
> > + break;
> > + case '?':
> > + default:
> > + return command_usage(&prealloc_cmd);
> > + }
> > + }
> > + if (optind != argc)
> > + return command_usage(&prealloc_cmd);
> > +
> > + if (ioctl(file->fd, XFS_IOC_FREE_EOFBLOCKS, &eofb) < 0) {
> > + fprintf(stderr, _("%s: XFS_IOC_FREE_EOFBLOCKS on %s: %s\n"),
> > + progname, file->name, strerror(errno));
> > + }
> > + return 0;
> > +}
> > +
> > +static void
> > +prealloc_help(void)
> > +{
> > + printf(_(
> > +"\n"
> > +"Control speculative preallocation\n"
> > +"\n"
> > +"Options: [-s] [-ugp id] [-m minlen]\n"
>
> No need to restate Options: because that comes out already with help,
> from the args in the cmd struct:
>
> xfs_spaceman> help prealloc
> prealloc [-s] [-ugp id] [-m minlen] -- Control speculative preallocation
>
> Control speculative preallocation
>
> Options: [-s] [-ugp id] [-m minlen]
>
>
> > +"\n"
> > +" -s -- wait for removal to complete\n"
> > +" -u uid -- remove prealloc on files matching user <uid>\n"
> > +" -g gid -- remove prealloc on files matching group <gid>\n"
> > +" -p prid -- remove prealloc on files matching project <prid>\n"
> > +" -m minlen -- only consider files larger than <minlen>\n"
>
> units? (bytes?) Probably should mention that suffixes are accepted,
> in the manpage.
>
> > +"\n"));
>
> I guess with no -u, -g, or -p it removes speculative prealloc for all ids?
> That'd be good to add to the manpage.
Will do.
> > +
> > +}
> > +
> > +void
> > +prealloc_init(void)
> > +{
> > + prealloc_cmd.name = "prealloc";
> > + prealloc_cmd.altname = "prealloc";
> > + prealloc_cmd.cfunc = prealloc_f;
> > + prealloc_cmd.argmin = 1;
> > + prealloc_cmd.argmax = -1;
> > + prealloc_cmd.args = "[-s] [-ugp id] [-m minlen]";
>
> This help is a little confusing:
>
> xfs_spaceman> prealloc -ugp 0
> prealloc [-s] [-ugp id] [-m minlen] -- Control speculative preallocation
>
> xfs_spaceman> prealloc -u 0 -g 0 -p 0
> xfs_spaceman>
>
> should probably be:
>
> prealloc [-s] [-u id] [-g id] [-p id] [-m minlen] -- Control speculative preallocation
Fixed.
--D
> > + prealloc_cmd.flags = CMD_FLAG_ONESHOT;
> > + prealloc_cmd.oneline = _("Control speculative preallocation");
> > + prealloc_cmd.help = prealloc_help;
> > +
> > + add_command(&prealloc_cmd);
> > +}
> > +
> > diff --git a/spaceman/space.h b/spaceman/space.h
> > index 7b4f034..0ae3116 100644
> > --- a/spaceman/space.h
> > +++ b/spaceman/space.h
> > @@ -33,5 +33,6 @@ extern int addfile(char *, int , xfs_fsop_geom_t *, int);
> >
> > extern void file_init(void);
> > extern void help_init(void);
> > +extern void prealloc_init(void);
> > extern void quit_init(void);
> > extern void trim_init(void);
> >
> > --
> > 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
> >
> --
> 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
next prev parent reply other threads:[~2017-06-14 16:39 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-02 19:51 [PATCH v8 00/10] xfsprogs 4.12: GETFSMAP support Darrick J. Wong
2017-06-02 19:51 ` [PATCH 01/10] xfs: introduce the XFS_IOC_GETFSMAP ioctl Darrick J. Wong
2017-06-02 19:51 ` [PATCH 02/10] xfs_io: refactor numlen into a library function Darrick J. Wong
2017-06-13 21:09 ` Eric Sandeen
2017-06-02 19:51 ` [PATCH 03/10] xfs_io: support the new getfsmap ioctl Darrick J. Wong
2017-06-13 22:20 ` Eric Sandeen
2017-06-14 0:23 ` Darrick J. Wong
2017-06-02 19:51 ` [PATCH 04/10] xfs_repair: replace rmap_compare with libxfs version Darrick J. Wong
2017-06-13 22:34 ` Eric Sandeen
2017-06-02 19:51 ` [PATCH 05/10] xfs_spaceman: space management tool Darrick J. Wong
2017-06-14 14:15 ` Eric Sandeen
2017-06-14 16:16 ` Darrick J. Wong
2017-06-02 19:51 ` [PATCH 06/10] xfs_spaceman: add FITRIM support Darrick J. Wong
2017-06-14 15:32 ` Eric Sandeen
2017-06-14 16:32 ` Darrick J. Wong
2017-06-02 19:51 ` [PATCH 07/10] xfs_spaceman: add new speculative prealloc control Darrick J. Wong
2017-06-14 15:05 ` Eric Sandeen
2017-06-14 16:39 ` Darrick J. Wong [this message]
2017-06-02 19:52 ` [PATCH 08/10] xfs_spaceman: Free space mapping command Darrick J. Wong
2017-06-14 15:43 ` Eric Sandeen
2017-06-14 16:43 ` Darrick J. Wong
2017-06-14 16:04 ` Eric Sandeen
2017-06-14 16:57 ` Darrick J. Wong
2017-06-02 19:52 ` [PATCH 09/10] xfs_spaceman: add a man page Darrick J. Wong
2017-06-14 16:06 ` Eric Sandeen
2017-06-14 20:49 ` Darrick J. Wong
2017-06-02 19:52 ` [PATCH 10/10] xfs_spaceman: add group summary mode Darrick J. Wong
2017-06-14 16:23 ` Eric Sandeen
2017-06-14 17:22 ` Darrick J. Wong
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=20170614163945.GT4530@birch.djwong.org \
--to=darrick.wong@oracle.com \
--cc=dchinner@redhat.com \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@redhat.com \
--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;
as well as URLs for NNTP newsgroup(s).