Re: [PATCH net 1/4] auxiliary: Allow empty id
From: Sean Anderson <sean.anderson@linux.dev>
Date: 2025-06-20 16:09:46
Also in:
lkml, netdev
On 6/20/25 12:02, Greg Kroah-Hartman wrote:
On Fri, Jun 20, 2025 at 11:37:40AM -0400, Sean Anderson wrote:quoted
On 6/20/25 01:13, Greg Kroah-Hartman wrote:quoted
On Thu, Jun 19, 2025 at 04:05:34PM -0400, Sean Anderson wrote:quoted
Support creating auxiliary devices with the id included as part of the name. This allows for non-decimal ids, which may be more appropriate for auxiliary devices created as children of memory-mapped devices. For example, a name like "xilinx_emac.mac.802c0000" could be achieved by setting .name to "mac.802c0000" and .id to AUXILIARY_DEVID_NONE.I don't see the justification for this, sorry. An id is just an id, it doesn't matter what is is and nothing should be relying on it to be the same across reboots or anywhere else. The only requirement is that it be unique at this point in time in the system.It identifies the device in log messages. Without this you have to read sysfs to determine what device is (for example) producing an error.That's fine, read sysfs :)
I should not have to read sysfs to decode boot output. If there is an error during boot I should be able to determine the offending device. This very important when the boot process fails before init is started, and very convenient otherwise.
quoted
This may be inconvenient to do if the error prevents the system from booting. This series converts a platform device with a legible ID like "802c0000.ethernet" to an auxiliary device, and I believe descriptive device names produce a better developer experience.You can still have 802c0000.ethernet be the prefix of the name, that's fine.
This is not possible due to how the auxiliary bus works. If device's name is in the form "foo.id", then the driver must have an auxiliary_device_id in its id_table with .name = "foo". So the address *must* come after the last period in the name. --Sean
quoted
This is also shorter and simpler than auto-generated IDs.Please stick with auto-generated ids, they will work properly here. thanks, greg k-h