From: Stefan Hajnoczi <stefanha@gmail.com>
To: Kusanagi Kouichi <slash@ac.auone-net.jp>
Cc: Kevin Wolf <kwolf@redhat.com>,
qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] raw-posix: Support discard on more filesystems
Date: Mon, 7 Jan 2013 14:54:50 +0100 [thread overview]
Message-ID: <20130107135450.GF17997@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <20130105120511.388913E403B@msa101.auone-net.jp>
On Sat, Jan 05, 2013 at 09:05:10PM +0900, Kusanagi Kouichi wrote:
> @@ -1098,15 +1101,30 @@ static int xfs_discard(BDRVRawState *s, int64_t sector_num, int nb_sectors)
> static coroutine_fn int raw_co_discard(BlockDriverState *bs,
> int64_t sector_num, int nb_sectors)
> {
> -#ifdef CONFIG_XFS
> +#if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_XFS)
> BDRVRawState *s = bs->opaque;
> +#endif
> + int ret = 0;
>
> +#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
> + do {
> + if (fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
> + sector_num << BDRV_SECTOR_BITS,
> + nb_sectors << BDRV_SECTOR_BITS) == 0) {
> + return 0;
> + }
> + } while (errno == EINTR);
Is fallocate(fd, FALLOC_FL_PUNCH_HOLE) a blocking operation?
If yes, we need to perform this call in an aio worker thread (see
read/write/flush/ioctl in block/raw-posix.c). Failure to do this means
QEMU and the guest will be blocked during fallocate and this causes poor
performance.
Stefan
next prev parent reply other threads:[~2013-01-07 13:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-05 12:05 [Qemu-devel] [PATCH] raw-posix: Support discard on more filesystems Kusanagi Kouichi
2013-01-07 13:54 ` Stefan Hajnoczi [this message]
2013-01-09 11:02 ` Paolo Bonzini
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=20130107135450.GF17997@stefanha-thinkpad.redhat.com \
--to=stefanha@gmail.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=slash@ac.auone-net.jp \
--cc=stefanha@redhat.com \
/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).