linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Enric Balletbo Serra <eballetbo@gmail.com>
To: Mathias Nyman <mathias.nyman@linux.intel.com>
Cc: Bob Gleitsmann <rjgleits@bellsouth.net>,
	Greg KH <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org
Subject: Re: Oops in xhci_endpoint_reset
Date: Wed, 31 Jul 2019 18:31:05 +0200	[thread overview]
Message-ID: <CAFqH_53pKrXisvmV6i3LG37M7rdAGjEHy3EyhMC=1P7cE9EEvg@mail.gmail.com> (raw)
In-Reply-To: <febbec1d-c8e3-daef-6c90-5b1d3e8f06d6@linux.intel.com>

Missatge de Mathias Nyman <mathias.nyman@linux.intel.com> del dia dc.,
31 de jul. 2019 a les 16:16:
>
> On 31.7.2019 12.18, Enric Balletbo Serra wrote:
> > Hi Mathias,
> >
> > Thanks to look into this.
> >
> > Missatge de Mathias Nyman <mathias.nyman@linux.intel.com> del dia dt.,
> > 30 de jul. 2019 a les 21:39:
> >>
> >> On 27.7.2019 23.43, Bob Gleitsmann wrote:
> >>> OK, here's the result of the bisection:
> >>>
> >>> ef513be0a9057cc6baf5d29566aaaefa214ba344 is the first bad commit
> >>> commit ef513be0a9057cc6baf5d29566aaaefa214ba344
> >>> Author: Jim Lin <jilin@nvidia.com>
> >>> Date:???? Mon Jun 3 18:53:44 2019 +0800
> >>>
> >>> ?????? usb: xhci: Add Clear_TT_Buffer
> >>> ??????
> >>> ?????? USB 2.0 specification chapter 11.17.5 says "as part of endpoint halt
> >>> ?????? processing for full-/low-speed endpoints connected via a TT, the host
> >>> ?????? software must use the Clear_TT_Buffer request to the TT to ensure
> >>> ?????? that the buffer is not in the busy state".
> >>> ??????
> >>> ?????? In our case, a full-speed speaker (ConferenceCam) is behind a high-
> >>> ?????? speed hub (ConferenceCam Connect), sometimes once we get STALL on a
> >>> ?????? request we may continue to get STALL with the folllowing requests,
> >>> ?????? like Set_Interface.
> >>> ??????
> >>> ?????? Here we invoke usb_hub_clear_tt_buffer() to send Clear_TT_Buffer
> >>> ?????? request to the hub of the device for the following Set_Interface
> >>> ?????? requests to the device to get ACK successfully.
> >>> ??????
> >>> ?????? Signed-off-by: Jim Lin <jilin@nvidia.com>
> >>> ?????? Acked-by: Mathias Nyman <mathias.nyman@linux.intel.com>
> >>> ?????? Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>
> >>> ??drivers/usb/host/xhci-ring.c | 27 ++++++++++++++++++++++++++-
> >>> ??drivers/usb/host/xhci.c?????????? | 21 +++++++++++++++++++++
> >>> ??drivers/usb/host/xhci.h?????????? |?? 5 +++++
> >>> ??3 files changed, 52 insertions(+), 1 deletion(-)
> >>>
> >>>
> >>
> >> Thanks, a quick look doesn't immediately open up the cause to me.
> >> Most likely an endpoint or struct usb_device got dropped and freed at suspend/resume,
> >> but we probably have some old stale pointer still in a a TD or URB to it.
> >>
> >> could you apply the hack below, it should show more details about this issue.
> >>
> >> grep for "Mathias" after resume, if you find it we just prevented a crash.
> >>
> >
> > With the below patch the oops disappears and the reason is
> >
> > root@debian:~# dmesg | grep "Mathias"
> > [   67.747933] xhci-hcd xhci-hcd.8.auto: Mathias: No vdev for slot id 0
> >
>
> Ok, thanks,
> When we free the xhci virt_dev the udev->slot_is set to zero as well.
> Looks like whole xHCI was reset are resume:
>
> [ 2994.539409] usb usb8: root hub lost power or was reset
> [ 2994.539411] usb usb9: root hub lost power or was reset
>
> This means that xHC controller was reset and xhci driver re-allocated everything.
>
> It makes sense to check that xhci virt_device exists in the endpoint reset callback.
> This will fix the oops, but I'm still missing the big picture, how we ended up here.
>
> Would it be possible for you to take traces and logs with the previous patch  that prevents
> the oops, but shows the "Mathias: No vdev for slot id 0" message?
>

Sure, here is:

dmesg: https://paste.debian.net/1093737/
traces: https://drive.google.com/open?id=1So-_zsu8ROtMH08hYVKIAZfr_51QLUPD

Thanks,
~ Enric




> -Mathias

  reply	other threads:[~2019-07-31 16:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-27  3:15 Oops in xhci_endpoint_reset Bob Gleitsmann
2019-07-27 10:59 ` Greg KH
2019-07-27 15:05   ` Bob Gleitsmann
2019-07-27 20:43   ` Bob Gleitsmann
2019-07-30 15:49     ` Enric Balletbo Serra
2019-07-30 16:28       ` Mathias Nyman
2019-07-30 15:57     ` Mathias Nyman
2019-07-31  9:18       ` Enric Balletbo Serra
2019-07-31 14:18         ` Mathias Nyman
2019-07-31 16:31           ` Enric Balletbo Serra [this message]
2019-08-02 11:22             ` Mathias Nyman

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='CAFqH_53pKrXisvmV6i3LG37M7rdAGjEHy3EyhMC=1P7cE9EEvg@mail.gmail.com' \
    --to=eballetbo@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mathias.nyman@linux.intel.com \
    --cc=rjgleits@bellsouth.net \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).