From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Artem Blagodarenko <artem.blagodarenko@seagate.com>
Cc: linux-ext4@vger.kernel.org
Subject: Re: [PATCH] mke2fs: fix coping of empty file using fiemap
Date: Mon, 16 Jan 2017 17:37:08 -0800 [thread overview]
Message-ID: <20170117013708.GC14029@birch.djwong.org> (raw)
In-Reply-To: <CAO3qy=HA2K9j0a86R1EyM-zCnQxEgUVP-trr_5cgaeJThmrWyQ@mail.gmail.com>
On Mon, Jan 16, 2017 at 07:59:17PM +0300, Artem Blagodarenko wrote:
> During filesystem creation with -d option files copied from given
> directory. If supported, FS_IOC_FIEMAP ioctl is used to get file
> extents. For empty file fm_mapped_extents is 0 and no error code
> is returned, because this is not fail situation.
>
> Without this patch errno from previous operation is returned and
> successful FS_IOC_FIEMAP ioctl call for empty file is interpreted
> as error.
>
> Signed-off-by: Artem Blagodarenko <artem.blagodarenko@seagate.com>
> ---
> misc/create_inode.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/misc/create_inode.c b/misc/create_inode.c
> index 5122e56..6083d94 100644
> --- a/misc/create_inode.c
> +++ b/misc/create_inode.c
> @@ -510,7 +510,7 @@ static errcode_t try_fiemap_copy(ext2_filsys fs,
> int fd, ext2_file_t e2_file,
> if (err < 0 && (errno == EOPNOTSUPP || errno == ENOTTY)) {
> err = EXT2_ET_UNIMPLEMENTED;
> goto out;
> - } else if (err < 0 || fiemap_buf->fm_mapped_extents == 0) {
> + } else if (err < 0 && fiemap_buf->fm_mapped_extents == 0) {
I think we want the loop to terminate any time fm_mapped_extents == 0,
not just in the case that err < 0 and fiemap_buf still reflects the
earlier memset(0)...
} else if (err < 0) {
err = errno;
goto out;
} else if (!fiemap_buf->fm_mapped_extents)
goto out;
...right?
--D
> err = errno;
> goto out;
> }
> --
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2017-01-17 1:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-16 16:59 [PATCH] mke2fs: fix coping of empty file using fiemap Artem Blagodarenko
2017-01-17 1:37 ` Darrick J. Wong [this message]
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=20170117013708.GC14029@birch.djwong.org \
--to=darrick.wong@oracle.com \
--cc=artem.blagodarenko@seagate.com \
--cc=linux-ext4@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;
as well as URLs for NNTP newsgroup(s).