qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Ryota Ozaki <ozaki.ryota@gmail.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/3] qemu-nbd: Improve error reporting
Date: Mon, 3 May 2010 06:52:11 +0900	[thread overview]
Message-ID: <t2u5e93dcec1005021452g897ae6c1t8b2f0d0071a2d530@mail.gmail.com> (raw)
In-Reply-To: <4BB088E5.30800@redhat.com>

On Mon, Mar 29, 2010 at 8:03 PM, Kevin Wolf <kwolf@redhat.com> wrote:
> Am 28.03.2010 19:07, schrieb Ryota Ozaki:
>> - use err(3) instead of errx(3) if errno is available
>>   to report why failed
>> - let fail prior to daemon(3) if opening a nbd file
>>   is likely to fail after daemonizing to avoid silent
>>   failure exit
>> - add missing 'ret = 1' when unix_socket_outgoing failed
>>
>> Signed-off-by: Ryota Ozaki <ozaki.ryota@gmail.com>
>
> Acked-by: Kevin Wolf <kwolf@redhat.com>
>
>> @@ -343,25 +343,31 @@ int main(int argc, char **argv)
>>          return 1;
>>      }
>>
>> -    if (bdrv_open(bs, argv[optind], flags) < 0) {
>> -        return 1;
>> +    if ((ret = bdrv_open(bs, argv[optind], flags)) < 0) {
>> +        errno = -ret;
>> +        err(EXIT_FAILURE, "Failed to bdrv_open '%s'", argv[optind]);
>>      }
>
> If you do it like this, you could do the change for even more errors,
> like the ones returned by bdrv_read. But that doesn't make this patch
> less correct, of course.

Indeed. So I will include the changes for bdrv_read as well
in the next round.

Thanks,
  ozaki-r

>
> Kevin
>

  reply	other threads:[~2010-05-02 21:52 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-28 17:07 [Qemu-devel] [PATCH 1/3] qemu-nbd: Fix coding style Ryota Ozaki
2010-03-28 17:07 ` [Qemu-devel] [PATCH 2/3] qemu-nbd: Extend read-only option to nbd device file Ryota Ozaki
2010-03-29 10:54   ` Kevin Wolf
2010-05-02 21:51     ` Ryota Ozaki
2010-03-28 17:07 ` [Qemu-devel] [PATCH 3/3] qemu-nbd: Improve error reporting Ryota Ozaki
2010-03-29 11:03   ` Kevin Wolf
2010-05-02 21:52     ` Ryota Ozaki [this message]
2010-05-03 17:01     ` Anthony Liguori
2010-05-04  7:29       ` Kevin Wolf
2010-03-29 10:44 ` [Qemu-devel] [PATCH 1/3] qemu-nbd: Fix coding style Kevin Wolf
2010-05-02 21:50   ` Ryota Ozaki
  -- strict thread matches above, loose matches on Subject: below --
2010-03-20  6:23 [Qemu-devel] [PATCH 1/3] qemu-nbd: Fix return value handling of bdrv_open Ryota Ozaki
2010-03-20  6:23 ` [Qemu-devel] [PATCH 3/3] qemu-nbd: Improve error reporting Ryota Ozaki
2010-03-27 13:02   ` Aurelien Jarno
2010-03-28 12:26     ` Ryota Ozaki

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=t2u5e93dcec1005021452g897ae6c1t8b2f0d0071a2d530@mail.gmail.com \
    --to=ozaki.ryota@gmail.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.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).