From: "Benoît Canet" <benoit.canet@irqsave.net>
To: Max Reitz <mreitz@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 1/2] raw-posix: Fix raw_co_get_block_status() after EOF
Date: Fri, 10 Oct 2014 13:40:35 +0200 [thread overview]
Message-ID: <20141010114035.GA10091@irqsave.net> (raw)
In-Reply-To: <1411399425-23430-2-git-send-email-mreitz@redhat.com>
The Monday 22 Sep 2014 à 17:23:44 (+0200), Max Reitz wrote :
> As its comment states, raw_co_get_block_status() should unconditionally
> return 0 and set *pnum to 0 for after EOF.
>
> An assertion after lseek(..., SEEK_HOLE) tried to catch this case by
> asserting that errno != -ENXIO (which would indicate a position after
> the EOF); but it should be errno != ENXIO instead. Fix this, too.
>
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
> block/raw-posix.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/block/raw-posix.c b/block/raw-posix.c
> index a253697..de4e3f3 100644
> --- a/block/raw-posix.c
> +++ b/block/raw-posix.c
> @@ -1509,9 +1509,9 @@ static int64_t try_seek_hole(BlockDriverState *bs, off_t start, off_t *data,
>
> *hole = lseek(s->fd, start, SEEK_HOLE);
> if (*hole == -1) {
> - /* -ENXIO indicates that sector_num was past the end of the file.
> + /* ENXIO indicates that sector_num was past the end of the file.
> * There is a virtual hole there. */
> - assert(errno != -ENXIO);
> + assert(errno != ENXIO);
>
> return -errno;
> }
> @@ -1560,6 +1560,10 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
> }
>
> start = sector_num * BDRV_SECTOR_SIZE;
> + if (start >= bdrv_getlength(bs)) {
> + *pnum = 0;
> + return 0;
> + }
>
> ret = try_fiemap(bs, start, &data, &hole, nb_sectors, pnum);
> if (ret < 0) {
> --
> 2.1.0
>
>
Reviewed-by: Benoît Canet <benoit.canet@nodalink.com>
next prev parent reply other threads:[~2014-10-10 11:43 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-22 15:23 [Qemu-devel] [PATCH 0/2] raw-posix: Fix raw_co_get_block_status() Max Reitz
2014-09-22 15:23 ` [Qemu-devel] [PATCH 1/2] raw-posix: Fix raw_co_get_block_status() after EOF Max Reitz
2014-10-10 11:40 ` Benoît Canet [this message]
2014-09-22 15:23 ` [Qemu-devel] [PATCH 2/2] raw-posix: raw_co_get_block_status() return value Max Reitz
2014-09-22 15:26 ` Max Reitz
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=20141010114035.GA10091@irqsave.net \
--to=benoit.canet@irqsave.net \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.