From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Allison Collins <allison.henderson@oracle.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 1/4] xfs_restore: refactor open-coded file creation code
Date: Mon, 20 May 2019 14:05:20 -0700 [thread overview]
Message-ID: <20190520210520.GB5335@magnolia> (raw)
In-Reply-To: <463f5d1d-a13f-c489-1474-c0b8b3097a71@oracle.com>
On Mon, May 06, 2019 at 05:11:23PM -0700, Allison Collins wrote:
> On 2/22/19 9:47 AM, Darrick J. Wong wrote:
> > From: Darrick J. Wong <darrick.wong@oracle.com>
> >
> > Create a helper to unlink, recreate, and reserve space in a file so that
> > we don't have two open-coded versions. We lose the broken ALLOCSP code
> > since it never worked anyway.
> >
> > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > ---
> > restore/dirattr.c | 97 ++++++++++++++++++-----------------------------------
> > restore/dirattr.h | 2 +
> > restore/namreg.c | 70 +++-----------------------------------
> > 3 files changed, 41 insertions(+), 128 deletions(-)
> >
> >
> > diff --git a/restore/dirattr.c b/restore/dirattr.c
> > index 5368664..0fb2877 100644
> > --- a/restore/dirattr.c
> > +++ b/restore/dirattr.c
> > @@ -55,6 +55,37 @@
> > #include "openutil.h"
> > #include "mmap.h"
> > +/* Create a file, try to reserve space for it, and return the fd. */
> > +int
> > +create_filled_file(
> > + const char *pathname,
> > + off64_t size)
> > +{
> > + struct flock64 fl = {
> > + .l_len = size,
> > + };
> > + int fd;
> > + int ret;
> > +
> > + (void)unlink(pathname);
> > +
> > + fd = open(pathname, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
> > + if (fd < 0)
> > + return fd;
>
> Just a nit: I think if you goto done here instead of return, you can remove
> the extra goto below since it's not having much effect. I sort of figured
> people like gotos because they like having one exit point to the function.
> Alternatively, if you don't mind having multiple exit points, you can simply
> return early in patch 4, and avoid the goto all together.
Hmm, you're right, let's just return fd directly instead of all this
goto nonsense.
--D
> Allison
>
> > +
> > + ret = ioctl(fd, XFS_IOC_RESVSP64, &fl);
> > + if (ret && errno != ENOTTY)
> > + mlog(MLOG_VERBOSE | MLOG_NOTE,
> > +_("attempt to reserve %lld bytes for %s using %s failed: %s (%d)\n"),
> > + size, pathname, "XFS_IOC_RESVSP64",
> > + strerror(errno), errno);
> > + if (ret == 0)
> > + goto done;
> > +
> > +done:
> > + return fd;
> > +}
> > +
> > /* structure definitions used locally ****************************************/
> > /* node handle limits
> > @@ -238,13 +269,8 @@ dirattr_init(char *hkdir, bool_t resume, uint64_t dircnt)
> > return BOOL_FALSE;
> > }
> > } else {
> > - /* create the dirattr file, first unlinking any older version
> > - * laying around
> > - */
> > - (void)unlink(dtp->dt_pathname);
> > - dtp->dt_fd = open(dtp->dt_pathname,
> > - O_RDWR | O_CREAT | O_EXCL,
> > - S_IRUSR | S_IWUSR);
> > + dtp->dt_fd = create_filled_file(dtp->dt_pathname,
> > + DIRATTR_PERS_SZ + (dircnt * sizeof(struct dirattr)));
> > if (dtp->dt_fd < 0) {
> > mlog(MLOG_NORMAL | MLOG_ERROR, _(
> > "could not create directory attributes file %s: "
> > @@ -253,63 +279,6 @@ dirattr_init(char *hkdir, bool_t resume, uint64_t dircnt)
> > strerror(errno));
> > return BOOL_FALSE;
> > }
> > -
> > - /* reserve space for the backing store. try to use RESVSP64.
> > - * if doesn't work, try ALLOCSP64. the former is faster, as
> > - * it does not zero the space.
> > - */
> > - {
> > - bool_t successpr;
> > - unsigned int ioctlcmd;
> > - int loglevel;
> > - size_t trycnt;
> > -
> > - for (trycnt = 0,
> > - successpr = BOOL_FALSE,
> > - ioctlcmd = XFS_IOC_RESVSP64,
> > - loglevel = MLOG_VERBOSE
> > - ;
> > - ! successpr && trycnt < 2
> > - ;
> > - trycnt++,
> > - ioctlcmd = XFS_IOC_ALLOCSP64,
> > - loglevel = max(MLOG_NORMAL, loglevel - 1)) {
> > - off64_t initsz;
> > - struct flock64 flock64;
> > - int rval;
> > -
> > - if (! ioctlcmd) {
> > - continue;
> > - }
> > -
> > - initsz = (off64_t)DIRATTR_PERS_SZ
> > - +
> > - ((off64_t)dircnt * sizeof(dirattr_t));
> > - flock64.l_whence = 0;
> > - flock64.l_start = 0;
> > - flock64.l_len = initsz;
> > - rval = ioctl(dtp->dt_fd, ioctlcmd, &flock64);
> > - if (rval) {
> > - if (errno != ENOTTY) {
> > - mlog(loglevel | MLOG_NOTE, _(
> > - "attempt to reserve %lld bytes for %s "
> > - "using %s "
> > - "failed: %s (%d)\n"),
> > - initsz,
> > - dtp->dt_pathname,
> > - ioctlcmd == XFS_IOC_RESVSP64
> > - ?
> > - "XFS_IOC_RESVSP64"
> > - :
> > - "XFS_IOC_ALLOCSP64",
> > - strerror(errno),
> > - errno);
> > - }
> > - } else {
> > - successpr = BOOL_TRUE;
> > - }
> > - }
> > - }
> > }
> > /* mmap the persistent descriptor
> > diff --git a/restore/dirattr.h b/restore/dirattr.h
> > index dd37a98..e81e69c 100644
> > --- a/restore/dirattr.h
> > +++ b/restore/dirattr.h
> > @@ -88,4 +88,6 @@ extern bool_t dirattr_cb_extattr(dah_t dah,
> > extattrhdr_t *ahdrp,
> > void *ctxp);
> > +int create_filled_file(const char *pathname, off64_t size);
> > +
> > #endif /* DIRATTR_H */
> > diff --git a/restore/namreg.c b/restore/namreg.c
> > index 89fa5ef..d0d5e89 100644
> > --- a/restore/namreg.c
> > +++ b/restore/namreg.c
> > @@ -37,6 +37,10 @@
> > #include "namreg.h"
> > #include "openutil.h"
> > #include "mmap.h"
> > +#include "global.h"
> > +#include "content.h"
> > +#include "content_inode.h"
> > +#include "dirattr.h"
> > /* structure definitions used locally ****************************************/
> > @@ -153,13 +157,8 @@ namreg_init(char *hkdir, bool_t resume, uint64_t inocnt)
> > return BOOL_FALSE;
> > }
> > } else {
> > - /* create the namreg file, first unlinking any older version
> > - * laying around
> > - */
> > - (void)unlink(ntp->nt_pathname);
> > - ntp->nt_fd = open(ntp->nt_pathname,
> > - O_RDWR | O_CREAT | O_EXCL,
> > - S_IRUSR | S_IWUSR);
> > + ntp->nt_fd = create_filled_file(ntp->nt_pathname,
> > + NAMREG_PERS_SZ + (inocnt * NAMREG_AVGLEN));
> > if (ntp->nt_fd < 0) {
> > mlog(MLOG_NORMAL | MLOG_ERROR, _(
> > "could not create name registry file %s: "
> > @@ -168,63 +167,6 @@ namreg_init(char *hkdir, bool_t resume, uint64_t inocnt)
> > strerror(errno));
> > return BOOL_FALSE;
> > }
> > -
> > - /* reserve space for the backing store. try to use RESVSP64.
> > - * if doesn't work, try ALLOCSP64. the former is faster, as
> > - * it does not zero the space.
> > - */
> > - {
> > - bool_t successpr;
> > - unsigned int ioctlcmd;
> > - int loglevel;
> > - size_t trycnt;
> > -
> > - for (trycnt = 0,
> > - successpr = BOOL_FALSE,
> > - ioctlcmd = XFS_IOC_RESVSP64,
> > - loglevel = MLOG_VERBOSE
> > - ;
> > - ! successpr && trycnt < 2
> > - ;
> > - trycnt++,
> > - ioctlcmd = XFS_IOC_ALLOCSP64,
> > - loglevel = max(MLOG_NORMAL, loglevel - 1)) {
> > - off64_t initsz;
> > - struct flock64 flock64;
> > - int rval;
> > -
> > - if (! ioctlcmd) {
> > - continue;
> > - }
> > -
> > - initsz = (off64_t)NAMREG_PERS_SZ
> > - +
> > - ((off64_t)inocnt * NAMREG_AVGLEN);
> > - flock64.l_whence = 0;
> > - flock64.l_start = 0;
> > - flock64.l_len = initsz;
> > - rval = ioctl(ntp->nt_fd, ioctlcmd, &flock64);
> > - if (rval) {
> > - if (errno != ENOTTY) {
> > - mlog(loglevel | MLOG_NOTE, _(
> > - "attempt to reserve %lld bytes for %s "
> > - "using %s "
> > - "failed: %s (%d)\n"),
> > - initsz,
> > - ntp->nt_pathname,
> > - ioctlcmd == XFS_IOC_RESVSP64
> > - ?
> > - "XFS_IOC_RESVSP64"
> > - :
> > - "XFS_IOC_ALLOCSP64",
> > - strerror(errno),
> > - errno);
> > - }
> > - } else {
> > - successpr = BOOL_TRUE;
> > - }
> > - }
> > - }
> > }
> > /* mmap the persistent descriptor
> >
next prev parent reply other threads:[~2019-05-20 21:05 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-22 16:47 [PATCH 0/4] xfsdump: update to use fallocate Darrick J. Wong
2019-02-22 16:47 ` [PATCH 1/4] xfs_restore: refactor open-coded file creation code Darrick J. Wong
2019-02-22 19:20 ` Andre Noll
2019-02-22 19:28 ` Darrick J. Wong
2019-02-22 19:55 ` Andre Noll
2019-05-07 0:11 ` Allison Collins
2019-05-20 21:05 ` Darrick J. Wong [this message]
2019-02-22 16:47 ` [PATCH 2/4] xfs_restore: check return value Darrick J. Wong
2019-05-07 0:11 ` Allison Collins
2019-02-22 16:47 ` [PATCH 3/4] xfs_restore: fix unsupported ioctl detection Darrick J. Wong
2019-05-07 0:11 ` Allison Collins
2019-02-22 16:47 ` [PATCH 4/4] xfs_restore: support fallocate when reserving space for a file Darrick J. Wong
2019-05-07 0:11 ` Allison Collins
2019-05-06 18:24 ` [PATCH 0/4] xfsdump: update to use fallocate Darrick J. Wong
-- strict thread matches above, loose matches on Subject: below --
2019-08-20 20:21 Darrick J. Wong
2019-08-20 20:21 ` [PATCH 1/4] xfs_restore: refactor open-coded file creation code 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=20190520210520.GB5335@magnolia \
--to=darrick.wong@oracle.com \
--cc=allison.henderson@oracle.com \
--cc=linux-xfs@vger.kernel.org \
/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