linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mke2fs: fix coping of empty file using fiemap
@ 2017-01-17 15:14 Artem Blagodarenko
  2017-01-17 16:49 ` Darrick J. Wong
  2017-01-31  2:52 ` [v2] " Theodore Ts'o
  0 siblings, 2 replies; 3+ messages in thread
From: Artem Blagodarenko @ 2017-01-17 15:14 UTC (permalink / raw)
  To: linux-ext4

Hello,

Darrick J. Wong, thank you for inspection. Here is second version of the patch.

Changes since v1:
* errno is returned in case failed ioctl
* loop is terminated any time fm_mapped_extents == 0

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 |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/misc/create_inode.c b/misc/create_inode.c
index 5122e56..d9e9b9b 100644
--- a/misc/create_inode.c
+++ b/misc/create_inode.c
@@ -510,10 +510,12 @@ 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) {
             err = errno;
             goto out;
-        }
+        } else if (fiemap_buf->fm_mapped_extents == 0)
+            goto out;
+
         for (i = 0, ext = ext_buf; i < fiemap_buf->fm_mapped_extents;
              i++, ext++) {
             err = copy_file_range(fs, fd, e2_file, ext->fe_logical,
--

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

* Re: [PATCH v2] mke2fs: fix coping of empty file using fiemap
  2017-01-17 15:14 [PATCH v2] mke2fs: fix coping of empty file using fiemap Artem Blagodarenko
@ 2017-01-17 16:49 ` Darrick J. Wong
  2017-01-31  2:52 ` [v2] " Theodore Ts'o
  1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2017-01-17 16:49 UTC (permalink / raw)
  To: Artem Blagodarenko; +Cc: linux-ext4

On Tue, Jan 17, 2017 at 06:14:19PM +0300, Artem Blagodarenko wrote:
> Hello,
> 
> Darrick J. Wong, thank you for inspection. Here is second version of the patch.
> 
> Changes since v1:
> * errno is returned in case failed ioctl
> * loop is terminated any time fm_mapped_extents == 0
> 
> 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>

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

--D

> ---
>  misc/create_inode.c |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/misc/create_inode.c b/misc/create_inode.c
> index 5122e56..d9e9b9b 100644
> --- a/misc/create_inode.c
> +++ b/misc/create_inode.c
> @@ -510,10 +510,12 @@ 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) {
>              err = errno;
>              goto out;
> -        }
> +        } else if (fiemap_buf->fm_mapped_extents == 0)
> +            goto out;
> +
>          for (i = 0, ext = ext_buf; i < fiemap_buf->fm_mapped_extents;
>               i++, ext++) {
>              err = copy_file_range(fs, fd, e2_file, ext->fe_logical,
> --
> --
> 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

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

* Re: [v2] mke2fs: fix coping of empty file using fiemap
  2017-01-17 15:14 [PATCH v2] mke2fs: fix coping of empty file using fiemap Artem Blagodarenko
  2017-01-17 16:49 ` Darrick J. Wong
@ 2017-01-31  2:52 ` Theodore Ts'o
  1 sibling, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2017-01-31  2:52 UTC (permalink / raw)
  To: Artem Blagodarenko; +Cc: linux-ext4, Darrick J. Wong

On Tue, Jan 17, 2017 at 06:14:19PM +0300, Artem Blagodarenko wrote:
> Hello,
> 
> Darrick J. Wong, thank you for inspection. Here is second version of the patch.
> 
> Changes since v1:
> * errno is returned in case failed ioctl
> * loop is terminated any time fm_mapped_extents == 0
> 
> 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>
> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

Thanks, applied.

						- Ted

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

end of thread, other threads:[~2017-01-31  3:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-17 15:14 [PATCH v2] mke2fs: fix coping of empty file using fiemap Artem Blagodarenko
2017-01-17 16:49 ` Darrick J. Wong
2017-01-31  2:52 ` [v2] " Theodore Ts'o

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).