[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2 2/2] block/raw-posix: use seek_hole ahead of
From: |
Eric Blake |
Subject: |
Re: [Qemu-devel] [PATCH v2 2/2] block/raw-posix: use seek_hole ahead of fiemap |
Date: |
Fri, 26 Sep 2014 11:22:48 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 |
On 09/25/2014 05:14 PM, Tony Breeds wrote:
> try_fiemap() uses FIEMAP_FLAG_SYNC which has a significant performance
> impact.
>
> Prefer seek_hole() over fiemap() to avoid this impact where possible.
> seek_hole is more widely used and, arguably, has potential to be
> optimised in the kernel.
It also has the potential to be less precise than fiemap on older
kernels (any filesystem that supports fiemap but has not yet wired up
seek_hole will get the kernel's default fallback of claiming no holes at
all), but that problem will fade as more people use modern kernels.
This matches what coreutils does, so I like it on that grounds.
>
> Reported-By: Michael Steffens <address@hidden>
> Signed-off-by: Tony Breeds <address@hidden>
> Cc: Kevin Wolf <address@hidden>
> Cc: Markus Armbruster <address@hidden>
> Cc: Stefan Hajnoczi <address@hidden>
> Cc: Max Reitz <address@hidden>
> Cc: Pádraig Brady <address@hidden>
> Cc: Eric Blake <address@hidden>
> ---
> Changes since v1:
> - split in to 2 patches
> - tried to make the commit messages better
Thanks; it is indeed better.
>
> block/raw-posix.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Eric Blake <address@hidden>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
- Re: [Qemu-devel] [PATCH] block/raw-posix: use seek_hole ahead of fiemap, (continued)
Re: [Qemu-devel] [PATCH] block/raw-posix: use seek_hole ahead of fiemap, Eric Blake, 2014/09/25
[Qemu-devel] [PATCH v2 1/2] block/raw-posix: Fix disk corruption in try_fiemap, Tony Breeds, 2014/09/25