qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] ehci: add sanity check for maxframes


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH] ehci: add sanity check for maxframes
Date: Mon, 3 Jul 2017 12:32:39 +0100

On 3 July 2017 at 12:15, Gerd Hoffmann <address@hidden> wrote:
> Reported-by: Peter Maydell <address@hidden>
> Signed-off-by: Gerd Hoffmann <address@hidden>
> ---
>  hw/usb/hcd-ehci.c | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
> index 73090e01ad..604912cb3e 100644
> --- a/hw/usb/hcd-ehci.c
> +++ b/hw/usb/hcd-ehci.c
> @@ -2483,6 +2483,11 @@ void usb_ehci_realize(EHCIState *s, DeviceState *dev, 
> Error **errp)
>                     NB_PORTS);
>          return;
>      }
> +    if (s->maxframes < 8 || s->maxframes > 512)  {
> +        error_setg(errp, "maxframes %d out if range (8 .. 512)",
> +                   s->maxframes);

Typo: should be "of".

> +        return;
> +    }
>
>      usb_bus_new(&s->bus, sizeof(s->bus), s->companion_enable ?
>                  &ehci_bus_ops_companion : &ehci_bus_ops_standalone, dev);
> --
> 2.9.3

Otherwise
Reviewed-by: Peter Maydell <address@hidden>

Do we want something similar for hcd-uhci just for consistency?

thanks
-- PMM



reply via email to

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