From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: Frode Isaksen <fisaksen@baylibre.com>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
Frode Isaksen <frode@meta.com>
Subject: Re: [PATCH] usb: dwc3: ep0: prevent dwc3_request from being queued twice
Date: Wed, 2 Apr 2025 22:21:33 +0000 [thread overview]
Message-ID: <20250402222128.2soczlkfwonz7r3p@synopsys.com> (raw)
In-Reply-To: <26644fc1-98c1-4443-9809-b7e4d6cec2e3@baylibre.com>
On Wed, Apr 02, 2025, Frode Isaksen wrote:
> On 4/2/25 1:49 AM, Thinh Nguyen wrote:
> > On Thu, Mar 27, 2025, Frode Isaksen wrote:
> > > From: Frode Isaksen <frode@meta.com>
> > >
> > > Prevent dwc3_request from being queued twice, by checking
> > > req->status.
> > > Similar to commit b2b6d601365a ("usb: dwc3: gadget: prevent
> > > dwc3_request from being queued twice") for non-ep0 endpoints.
> > > Crash log:
> > > list_add double add: new=ffffff87ab2c7950, prev=ffffff87ab2c7950,
> > > next=ffffff87ab485b60.
> > > kernel BUG at lib/list_debug.c:35!
> > > Call trace:
> > > __list_add_valid+0x70/0xc0
> > > __dwc3_gadget_ep0_queue+0x70/0x224
> > > dwc3_ep0_handle_status+0x118/0x200
> > > dwc3_ep0_inspect_setup+0x144/0x32c
> > > dwc3_ep0_interrupt+0xac/0x340
> > > dwc3_process_event_entry+0x90/0x724
> > > dwc3_process_event_buf+0x7c/0x33c
> > > dwc3_thread_interrupt+0x58/0x8c
> > >
> > > Signed-off-by: Frode Isaksen <frode@meta.com>
> > > ---
> > > This bug was discovered, tested and fixed (no more crashes seen) on
> > > Meta Quest 3 device. Also tested on T.I. AM62x board.
> > >
> > > drivers/usb/dwc3/ep0.c | 5 +++++
> > > drivers/usb/dwc3/gadget.c | 1 +
> > > 2 files changed, 6 insertions(+)
> > >
> > > diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c
> > > index 666ac432f52d..e26c3a62d470 100644
> > > --- a/drivers/usb/dwc3/ep0.c
> > > +++ b/drivers/usb/dwc3/ep0.c
> > > @@ -91,6 +91,11 @@ static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
> > > {
> > > struct dwc3 *dwc = dep->dwc;
> > > + if (WARN(req->status < DWC3_REQUEST_STATUS_COMPLETED,
> > Let's not use WARN. Perhaps dev_warn?
> I copied the coding style from commit b2b6d601365a ("usb: dwc3: gadget:
> prevent
>
> dwc3_request from being queued twice"), so maybe a follow-up patch to change from WARN to dev_warn for the two patches ?
We can just use dev_warn here, we don't need 2 separate patches for this
change. The other place can be reworked in a separate patch.
>
> >
> > > + "%s: request %pK already in flight\n",
> > > + dep->name, &req->request))
> > > + return -EINVAL;
> > > +
> > > req->request.actual = 0;
> > > req->request.status = -EINPROGRESS;
> > > req->epnum = dep->number;
> > > diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> > > index 89a4dc8ebf94..c34446d8c54f 100644
> > > --- a/drivers/usb/dwc3/gadget.c
> > > +++ b/drivers/usb/dwc3/gadget.c
> > > @@ -3002,6 +3002,7 @@ static int __dwc3_gadget_start(struct dwc3 *dwc)
> > > dwc->ep0_bounced = false;
> > > dwc->link_state = DWC3_LINK_STATE_SS_DIS;
> > > dwc->delayed_status = false;
> > > + dwc->ep0_usb_req.status = DWC3_REQUEST_STATUS_UNKNOWN;
> > > dwc3_ep0_out_start(dwc);
> > > dwc3_gadget_enable_irq(dwc);
> > > --
> > > 2.48.1
> > >
> > I'm still not clear how this can happen. Are you testing this against
> > mainline? Can you provide the dwc3 tracepoints?
>
> I was not able to reproduce this locally. Was seen on 5.10, tested on 6.1
> and 6.6.
>
Without understanding how this can happen and why it is needed, we
should not just apply this. Kernel v5.10, v6.1, and v6.6 are really old.
We have a lot of fixes since then. Please see if this is reproducible
using mainline.
Thanks,
Thinh
next prev parent reply other threads:[~2025-04-02 22:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-27 14:15 [PATCH] usb: dwc3: ep0: prevent dwc3_request from being queued twice Frode Isaksen
2025-04-01 23:49 ` Thinh Nguyen
2025-04-02 12:43 ` Frode Isaksen
2025-04-02 22:21 ` Thinh Nguyen [this message]
2025-04-03 14:34 ` Frode Isaksen
2025-04-07 23:44 ` Thinh Nguyen
2025-04-08 7:38 ` Frode Isaksen
2025-04-09 1:16 ` Thinh Nguyen
2025-04-10 0:09 ` Thinh Nguyen
2025-04-10 12:12 ` Frode Isaksen
2025-04-11 1:27 ` Thinh Nguyen
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=20250402222128.2soczlkfwonz7r3p@synopsys.com \
--to=thinh.nguyen@synopsys.com \
--cc=fisaksen@baylibre.com \
--cc=frode@meta.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox