qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 02/19] usb-bus: convert USBDeviceClass init to r


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 02/19] usb-bus: convert USBDeviceClass init to realize
Date: Thu, 18 Sep 2014 12:08:15 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0

Il 18/09/2014 11:32, address@hidden ha scritto:
> @@ -460,7 +460,7 @@ static void usb_serial_event(void *opaque, int event)
>              break;
>          case CHR_EVENT_OPENED:
>              if (!s->dev.attached) {
> -                usb_device_attach(&s->dev);
> +                usb_device_attach(&s->dev, NULL);

After this patch, this stops printing the error if the attach fails.
Please add qerror_report_err.

>              }
>              break;
>          case CHR_EVENT_CLOSED:
> @@ -489,7 +489,7 @@ static int usb_serial_initfn(USBDevice *dev)
>      usb_serial_handle_reset(dev);
>  
>      if (s->cs->be_open && !dev->attached) {
> -        usb_device_attach(dev);
> +        usb_device_attach(dev, NULL);

This too.  Please add qerror_report_err here too and, in this case,
please make patch 12 pass the errp instead of using qerror_report_err.

Paolo

>      }
>      return 0;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]