[sheepdog] [Qemu-devel] [PATCH] sheepdog: Set error when connection fails
Daniel P. Berrange
berrange at redhat.com
Thu Apr 20 17:30:16 CEST 2017
On Thu, Apr 20, 2017 at 12:00:03PM +0800, Fam Zheng wrote:
> Signed-off-by: Fam Zheng <famz at redhat.com>
> ---
> block/sheepdog.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/block/sheepdog.c b/block/sheepdog.c
> index fb9203e..7e889ee 100644
> --- a/block/sheepdog.c
> +++ b/block/sheepdog.c
> @@ -608,6 +608,7 @@ static int connect_to_sdog(BDRVSheepdogState *s, Error **errp)
> qemu_set_nonblock(fd);
> } else {
> fd = -EIO;
> + error_setg(errp, "Failed to connect to sheepdog server");
> }
This doesn't make much sense to me. The lines just above the
diff context have this:
fd = socket_connect(s->addr, errp, NULL, NULL);
socket_connect should have already reported an error on "errp"
in the scenario that 'fd == -1'. So AFAICT the new error_setg is
just throwing away the real detailed error message in favour of
a generic message.
So I'm puzzelled why we need to change anything - error reporting
should already be working fine.
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
More information about the sheepdog
mailing list