[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] char: translate from QIOChannel error to errno
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-devel] [PATCH] char: translate from QIOChannel error to errno |
Date: |
Fri, 18 Mar 2016 12:55:34 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 |
On 11/03/2016 18:55, address@hidden wrote:
> From: Marc-André Lureau <address@hidden>
>
> Caller of CharDriverState.chr* callback assume errno error conventions.
> Translate QIOChannel error to errno (this fixes potential EAGAIN
> regression, for ex if a vhost-user backend block, qemu_chr_fe_read_all()
> could get error -2 and not wait)
>
> Signed-off-by: Marc-André Lureau <address@hidden>
> ---
> qemu-char.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/qemu-char.c b/qemu-char.c
> index ad11b75..4317388 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -2727,6 +2727,13 @@ static ssize_t tcp_chr_recv(CharDriverState *chr, char
> *buf, size_t len)
> NULL);
> }
>
> + if (ret == QIO_CHANNEL_ERR_BLOCK) {
> + errno = EAGAIN;
> + ret = -1;
> + } else if (ret == -1) {
> + errno = EIO;
> + }
> +
> if (msgfds_num) {
> /* close and clean read_msgfds */
> for (i = 0; i < s->read_msgfds_num; i++) {
>
I can take this patch as it fixes a real regression, but could
QIOChannel just return negative errno?
Paolo