Linux USB
 help / color / mirror / Atom feed
* [PATCH 0/2] usb: gadget: avoid warnings during configuration transitions
@ 2026-09-07  8:58 Keisuke Tsukuda
  2026-09-07  8:58 ` [PATCH 1/2] usb: gadget: composite: avoid warning on aborted delayed status Keisuke Tsukuda
  2026-09-07  8:58 ` [PATCH 2/2] usb: gadget: f_mass_storage: ignore class requests while inactive Keisuke Tsukuda
  0 siblings, 2 replies; 5+ messages in thread
From: Keisuke Tsukuda @ 2026-09-07  8:58 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	syzbot+a83a5a1ba9ff57935171@syzkaller.appspotmail.com,
	syzbot+d31109047baed8f3b590@syzkaller.appspotmail.com,
	Keisuke Tsukuda

Rapidly alternating SET_CONFIGURATION requests can overtake the
mass-storage function's asynchronous configuration work. This exposes two
states that are handled safely but currently produce kernel warnings: a
delayed-status completion after reset_config() cleared its counter, and a
class request while common->fsg is not installed.

The first patch keeps the obsolete completion as a dynamic-debug
diagnostic. The second avoids the warning only in fsg_setup(), where the
request is already rejected with -EOPNOTSUPP; warnings in other internal
f_mass_storage paths remain unchanged.

Both reports reproduce on an ARM64 Ubuntu 6.8 VM using dummy_hcd. With both
patches loaded, five 10-second, four-thread runs produced no WARNING, BUG,
or Oops. In a separate run, a kprobe observed five calls to
usb_composite_setup_continue() with delayed_status == 0 while the target
warning remained absent.

syzbot tested this exact series on usb-testing commit
edc1518454f6439e50a9220e9a3ba09044ea8d8b and reported OK after a
50-minute run:

https://syzkaller.appspot.com/bug?extid=a83a5a1ba9ff57935171

Keisuke Tsukuda (2):
  usb: gadget: composite: avoid warning on aborted delayed status
  usb: gadget: f_mass_storage: ignore class requests while inactive

 drivers/usb/gadget/composite.c               | 2 +-
 drivers/usb/gadget/function/f_mass_storage.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.50.1 (Apple Git-155)

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-09-08 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07  8:58 [PATCH 0/2] usb: gadget: avoid warnings during configuration transitions Keisuke Tsukuda
2026-09-07  8:58 ` [PATCH 1/2] usb: gadget: composite: avoid warning on aborted delayed status Keisuke Tsukuda
2026-09-07  8:58 ` [PATCH 2/2] usb: gadget: f_mass_storage: ignore class requests while inactive Keisuke Tsukuda
2026-09-08 14:28   ` Alan Stern
2026-09-08 20:27     ` Keisuke Tsukuda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox