From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
To: Jiazi Liu <jiazi.liu1984@gmail.com>,
Thinh.Nguyen@synopsys.com, gregkh@linuxfoundation.org
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org, lkp@intel.com,
oe-kbuild-all@lists.linux.dev, Jiazi Liu <liujiazi@amazon.com>
Subject: Re: [PATCH v2 1/1] usb: dwc3: gadget: fix IRQ storm on invalid event buffer count
Date: Wed, 12 Aug 2026 15:18:24 +0530 [thread overview]
Message-ID: <0802e0ee-499d-4f47-a8d9-1a6eae635ff3@oss.qualcomm.com> (raw)
In-Reply-To: <20260812082127.79610-1-liujiazi@amazon.com>
On 8/12/2026 1:51 PM, Jiazi Liu wrote:
> From: Jiazi Liu <jiazi.liu1984@gmail.com>
>
[...]
> ---
> drivers/usb/dwc3/core.h | 7 +++++++
> drivers/usb/dwc3/gadget.c | 41 +++++++++++++++++++++++++++++++++++++--
> 2 files changed, 46 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
> index 608daeb7ef10..b1cd888eca77 100644
> --- a/drivers/usb/dwc3/core.h
> +++ b/drivers/usb/dwc3/core.h
> @@ -49,6 +49,7 @@
> #define DWC3_ENDPOINTS_NUM 32
> #define DWC3_XHCI_RESOURCES_NUM 2
> #define DWC3_ISOC_MAX_RETRIES 5
> +#define DWC3_ERR_RECOVERY_MAX 3
>
> #define DWC3_SCRATCHBUF_SIZE 4096 /* each buffer is assumed to be 4KiB */
> #define DWC3_EVENT_BUFFERS_SIZE 4096
> @@ -1004,6 +1005,7 @@ struct dwc3_glue_ops {
> /**
> * struct dwc3 - representation of our controller
> * @drd_work: workqueue used for role swapping
> + * @err_recovery_work: workqueue used for controller error recovery
> * @ep0_trb: trb which is used for the ctrl_req
> * @bounce: address of bounce buffer
> * @setup_buf: used while precessing STD USB requests
> @@ -1171,6 +1173,7 @@ struct dwc3_glue_ops {
> * @wakeup_configured: set if the device is configured for remote wakeup.
> * @suspended: set to track suspend event due to U3/L2.
> * @susphy_state: state of DWC3_GUSB2PHYCFG_SUSPHY + DWC3_GUSB3PIPECTL_SUSPHY
> + * @err_dying: true when controller is in error recovery, reject all requests
> * before PM suspend.
How about gadget_dying or gadget_died (similar to hc_died in xhci). The
variable "err_dyring"is misleading.
> * @imod_interval: set the interrupt moderation interval in 250ns
> * increments or 0 to disable.
> @@ -1186,9 +1189,11 @@ struct dwc3_glue_ops {
> * @wakeup_pending_funcs: Indicates whether any interface has requested for
> * function wakeup in bitmap format where bit position
> * represents interface_id.
> + * @err_recovery_count: number of consecutive error recovery attempts
> */
> struct dwc3 {
> struct work_struct drd_work;
> + struct work_struct err_recovery_work;
> struct dwc3_trb *ep0_trb;
> void *bounce;
> u8 *setup_buf;
> @@ -1420,6 +1425,7 @@ struct dwc3 {
> unsigned wakeup_configured:1;
> unsigned suspended:1;
> unsigned susphy_state:1;
> + unsigned err_dying:1;
>
> u16 imod_interval;
>
> @@ -1429,6 +1435,7 @@ struct dwc3 {
> struct dentry *debug_root;
> u32 gsbuscfg0_reqinfo;
> u32 wakeup_pending_funcs;
> + u32 err_recovery_count;
> };
>
> #define INCRX_BURST_MODE 0
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index fa0f16ffafef..05f3ffab6e47 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -2054,6 +2054,9 @@ static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
>
> int ret;
>
> + if (dwc->err_dying)
> + return -ESHUTDOWN;
> +
Not sure but should this check be added for all gadget_ops ?
Regards,
Krishna,
next prev parent reply other threads:[~2026-08-12 9:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260727092258.1121-1-liujiazi@amazon.com>
2026-08-12 8:21 ` Jiazi Liu
2026-08-12 9:48 ` Krishna Kurapati [this message]
2026-08-28 2:36 ` Thinh Nguyen
2026-08-28 9:48 ` Liu Jiazi
2026-08-29 0:31 ` 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=0802e0ee-499d-4f47-a8d9-1a6eae635ff3@oss.qualcomm.com \
--to=krishna.kurapati@oss.qualcomm.com \
--cc=Thinh.Nguyen@synopsys.com \
--cc=gregkh@linuxfoundation.org \
--cc=jiazi.liu1984@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=liujiazi@amazon.com \
--cc=lkp@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=stable@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
all inboxes | Powered by JetHome®