All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: linux-usb@vger.kernel.org, Greg KH <greg@kroah.com>,
	Joel Stanley <joel.stanley@au1.ibm.com>,
	Andrew Jeffery <andrew@aj.id.au>
Subject: [v3,1/3] usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc()
Date: Sat, 13 Jan 2018 09:31:26 +1100	[thread overview]
Message-ID: <1515796286.31850.112.camel@kernel.crashing.org> (raw)

On Fri, 2018-01-12 at 10:53 -0500, Alan Stern wrote:
> On Fri, 12 Jan 2018, Benjamin Herrenschmidt wrote:
> 
> > The current code tries to test for bits that are masked out by
> > usb_endpoint_maxp(). Instead, use the proper accessor to access
> > the new high bandwidth bits.
> > 
> > Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > ---
> 
> Shouldn't this fix be queued for the stable kernels too?

Not sure, I'll let you decide. I noticed that by code inspection ages
ago, and posted the fix at least 2 or 3 times already but nobody picked
it up so I left it in my series and keep re-posting it :-) The bug
doesn't actually affect me.

Cheers,
Ben.

> Alan Stern
> 
> >  drivers/usb/gadget/udc/core.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
> > index 1b3efb14aec7..ac0541529499 100644
> > --- a/drivers/usb/gadget/udc/core.c
> > +++ b/drivers/usb/gadget/udc/core.c
> > @@ -912,7 +912,7 @@ int usb_gadget_ep_match_desc(struct usb_gadget *gadget,
> >               return 0;
> >  
> >       /* "high bandwidth" works only at high speed */
> > -     if (!gadget_is_dualspeed(gadget) && usb_endpoint_maxp(desc) & (3<<11))
> > +     if (!gadget_is_dualspeed(gadget) && usb_endpoint_maxp_mult(desc) > 1)
> >               return 0;
> >  
> >       switch (type) {
---
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2018-01-12 22:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-12 22:31 Benjamin Herrenschmidt [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-01-12 15:53 [v3,1/3] usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc() Alan Stern
2018-01-12  6:50 Benjamin Herrenschmidt

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=1515796286.31850.112.camel@kernel.crashing.org \
    --to=benh@kernel.crashing.org \
    --cc=andrew@aj.id.au \
    --cc=greg@kroah.com \
    --cc=joel.stanley@au1.ibm.com \
    --cc=linux-usb@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    /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.