[PATCH 1/1] usb: dwc3: ep0: skip CLEAR_HALT on non-stalled endpoints

From: Jiazi Liu

Date: Mon Jul 27 2026 - 06:17:54 EST


Mac hosts send CLEAR_FEATURE(HALT) to all endpoints immediately after
SET_CONFIGURATION, even when no endpoint is actually stalled. This
causes __dwc3_gadget_ep_set_halt() to be called unnecessarily, which
can disrupt ongoing transfers on active endpoints.

Fix this by checking the DWC3_EP_STALL flag before processing
CLEAR_FEATURE(HALT). If the endpoint is not stalled, simply acknowledge
the host request without calling into the endpoint halt path.

Signed-off-by: Jiazi Liu <liujiazi@xxxxxxxxxx>
---
drivers/usb/dwc3/ep0.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c
index bfe616194dfa..b577a1b764fc 100644
--- a/drivers/usb/dwc3/ep0.c
+++ b/drivers/usb/dwc3/ep0.c
@@ -554,6 +554,9 @@ static int dwc3_ep0_handle_endpoint(struct dwc3 *dwc,
if (set == 0 && (dep->flags & DWC3_EP_WEDGE))
break;

+ if (set == 0 && !(dep->flags & DWC3_EP_STALL))
+ break;
+
ret = __dwc3_gadget_ep_set_halt(dep, set, true);
if (ret)
return -EINVAL;
--
2.50.1 (Apple Git-155)