From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B6088C4332F for ; Sun, 6 Nov 2022 16:02:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229970AbiKFQCO (ORCPT ); Sun, 6 Nov 2022 11:02:14 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52010 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229841AbiKFQCN (ORCPT ); Sun, 6 Nov 2022 11:02:13 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3E5E2230; Sun, 6 Nov 2022 08:02:12 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id BA1D160C88; Sun, 6 Nov 2022 16:02:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97D59C433D6; Sun, 6 Nov 2022 16:02:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1667750531; bh=l8k/9vGfjM85JG5CuAFRMdoK53+DhUwGpfzR5U8Rdjo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=FA9mYDaqSnHWG1KGRGyKs6XD1JUR0D/Be4jGh6VxBnjK7tdWtE2fgwAlsO/IfrE1k a2SW9BrEydOKNgNzZHpySNs7LLzrBet/yOAHWScfkxXD01zMBbeeXUJiqiP7CFFGxK Q72xAQxZKLf6sikkg6jjFnyuoQw7WUmiethk24Zs= Date: Sun, 6 Nov 2022 17:02:07 +0100 From: Greg Kroah-Hartman To: Vincent MAILHOL Cc: Alan Stern , linux-can@vger.kernel.org, Marc Kleine-Budde , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org Subject: Re: [PATCH v2 3/3] can: etas_es58x: report the firmware version through ethtool Message-ID: References: <20221104171604.24052-4-mailhol.vincent@wanadoo.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Sun, Nov 06, 2022 at 11:44:52PM +0900, Vincent MAILHOL wrote: > Le dim. 6 nov. 2022 à 23:22, Greg Kroah-Hartman > a écrit : > > > > On Sun, Nov 06, 2022 at 09:47:05PM +0900, Vincent MAILHOL wrote: > > > On Sun. 6 Nov. 2022 at 20:25, Greg Kroah-Hartman > > > wrote: > > > > On Sat, Nov 05, 2022 at 08:45:10PM -0400, Alan Stern wrote: > > > > > On Sat, Nov 05, 2022 at 06:38:35PM +0100, Greg Kroah-Hartman wrote: > > > > > > On Sun, Nov 06, 2022 at 02:21:11AM +0900, Vincent MAILHOL wrote: > > > > > > > On Sat. 5 Nov. 2022 at 18:27, Vincent MAILHOL > > > > > > > wrote: > > > > > > > > On Sat. 5 Nov. 2022 at 17:36, Greg Kroah-Hartman > > > > > > > > wrote: > > > > > > It's late right now, and I can't remember the whole USB spec, but I > > > > > > think the device provides a list of the string ids that are valid for > > > > > > it. If so, we can add that to sysfs for any USB device out there, no > > > > > > matter the string descriptor number. > > > > > > > > > > No, there is no such list. > > > > > > > > Yeah, my fault, nevermind about that, sorry. > > > > > > > > > > If not, maybe we can just iterate the 255 values and populate sysfs > > > > > > files if they are present? I'll dig up the USB spec tomorrow... > > > > > > > > > > Yes, we could do that. But the filename would have to be the string > > > > > id, which is not meaningful. We wouldn't be able to have labels like > > > > > "product-info" unless somehow a driver could provide the label. > > > > > > > > We could have a directory of strings/ with the individual descriptors in > > > > there as files with the name being the string id. > > > > > > > > But that might take a long time to populate, as it can take a few tries > > > > to get the string from a device, and to do that 256 times might be > > > > noticable at device insertion time. > > > > > > > > > Also, there's the matter of language. Devices can have string > > > > > descriptors in multiple languages; which one should we show in sysfs? > > > > > All of them? Right now we use just the default language for the strings > > > > > that we put in sysfs. > > > > > > > > > > > I say do this at the USB core level, that way it works for any USB > > > > > > device, and you don't have a device-specific sysfs file and custom > > > > > > userspace code just for this. > > > > > > > > > > This is unavoidable to some extent. Without device-specific information > > > > > or userspace code, there is no way to know which string descriptor > > > > > contains the data you want. > > > > > > > > Agreed. > > > > > > > > Ok, for this specific instance, adding the "we know this string id > > > > should be here" as a device-specific sysfs file seems to be the easiest > > > > way forward. > > > > > > > > Vincent, want to try that instead? > > > > > > OK for me. Will do that and remove the kernel log spam and replace it > > > by a sysfs entry. > > > > > > I have two questions: > > > > > > 1/ Can I still export and use usb_cache_string()? In other terms, does > > > the first patch of this series still apply? This looks like the most > > > convenient function to retrieve that custom string to me. > > > > Everyone seems to just use the usb_string() function, will that not work > > for you? > > It is just that I would have to write two or three lines of code less. Odd, should it be used instead where others are calling usb_string()? > But if you prefer I can use usb_string(), no problem on that. Try it both ways. If it's easier with usb_cache_string(), then we can export it. It's just odd that it hasn't been exported yet. > > > 2/ Is it a no-go to also populate ethtool_drvinfo::fw_version? Some > > > users might look for the value in sysfs, while some might use ethtool. > > > If the info is not available in ethtool, people might simply assume it > > > is not available at all. So, I would like to provide both. > > > > That's up to the network developers/maintainers. I don't know if that's > > a required or common api for network devices to have. > > My question was more to know if you had any objection if I did so. > From the documentation, there is no indication that this is required. > But I don't like to leave a field empty when I have the information to > fill it. No objection from me. thanks, greg k-h