[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <04929f5f-8760-45f1-999a-c48e8dea6876@rowland.harvard.edu>
Date: Fri, 23 Jan 2026 11:18:29 -0500
From: Alan Stern <stern@...land.harvard.edu>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Jisheng Zhang <jszhang@...nel.org>, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 0/3] usb: gadget: Add a prefix to log messages
On Fri, Jan 23, 2026 at 03:52:11PM +0100, Greg Kroah-Hartman wrote:
> On Fri, Jan 23, 2026 at 10:22:18PM +0800, Jisheng Zhang wrote:
> > I met some log as below:
> > [ 581.262476] read descriptors
> > [ 581.265558] bcdVersion must be 0x0100, stored in Little Endian order...
> >
> > To be honest, if I'm not familiar with the usb gadget framework, I dunno
> > which component is complaining. Add a prefix to log messages, so the
> > above messages will be look as below:
> >
> > [ 581.262476] usb_f_fs: read descriptors
> > [ 581.265558] usb_f_fs: bcdVersion must be 0x0100, stored in Little Endian order...
> >
> > Then solve similar issues for f_mass_storage and f_tcm.
>
> These should all be using the dev_info() and like calls, not pr_*(), and
> if that happens, then you will get the correct prefix. Can you make
> that change instead?
Unfortunately, the composite gadget driver doesn't create sub-devices of
the gadget for the various function drivers to bind to. The only device
available is the gadget itself, and its driver's name is just
"composite". Therefore dev_info() and others will not show the
particular function driver, which is what Jisheng wants to see.
Also, some of the calls affected by these changes occur at module
initialization time, before anything has been bound. They don't yet
have any device to refer to.
Alan Stern
Powered by blists - more mailing lists