All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hans de Goede <hdegoede@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Revert "xhci: Fix number of streams allocated when using streams"
Date: Fri, 29 Aug 2014 14:45:55 +0200	[thread overview]
Message-ID: <54007603.8030503@redhat.com> (raw)
In-Reply-To: <1409309106-21147-1-git-send-email-kraxel@redhat.com>

Hi,

On 08/29/2014 12:45 PM, Gerd Hoffmann wrote:
> This reverts commit d063c3112c4cd23a479ee18720c2bd119da2d315.
> 
> "2 << x" is the same as "2 ^ (x + 1)", so the old code is correct.
> 
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  hw/usb/hcd-xhci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
> index 2c5c6f3..c63cadc 100644
> --- a/hw/usb/hcd-xhci.c
> +++ b/hw/usb/hcd-xhci.c
> @@ -1151,7 +1151,7 @@ static void xhci_reset_streams(XHCIEPContext *epctx)
>  static void xhci_alloc_streams(XHCIEPContext *epctx, dma_addr_t base)
>  {
>      assert(epctx->pstreams == NULL);
> -    epctx->nr_pstreams = 2 << (epctx->max_pstreams + 1);
> +    epctx->nr_pstreams = 2 << epctx->max_pstreams;
>      epctx->pstreams = xhci_alloc_stream_contexts(epctx->nr_pstreams, base);
>  }
>  
> 

Right, my bad.

Acked-by: Hans de Goede <hdegoede@redhat.com>

Regards,

Hans

      reply	other threads:[~2014-08-29 12:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-29 10:45 [Qemu-devel] [PATCH] Revert "xhci: Fix number of streams allocated when using streams" Gerd Hoffmann
2014-08-29 12:45 ` Hans de Goede [this message]

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=54007603.8030503@redhat.com \
    --to=hdegoede@redhat.com \
    --cc=kraxel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.