On Wed, Jun 19, 2024 at 01:39:49AM +0200, Danilo Krummrich wrote: > From: Wedson Almeida Filho <wedsonaf@xxxxxxxxx> > > Most subsystems use some kind of ID to match devices and drivers. Hence, > we have to provide Rust drivers an abstraction to register an ID table > for the driver to match. Let's not. For now, let's stick with the C arrays please. That way it's simple, makes it easy to understand, and you can put the array in a .c file and access it that way. That way also all of our existing infrastructure will work properly (I don't know how you deal with the modinfo sections here...) > > Generally, those IDs are subsystem specific and hence need to be > implemented by the corresponding subsystem. However, the `IdArray`, > `IdTable` and `RawDeviceId` types provide a generalized implementation > that makes the life of subsystems easier to do so. > > Co-developed-by: Asahi Lina <lina@xxxxxxxxxxxxx> > Signed-off-by: Asahi Lina <lina@xxxxxxxxxxxxx> > Signed-off-by: Wedson Almeida Filho <wedsonaf@xxxxxxxxx> > Co-developed-by: Danilo Krummrich <dakr@xxxxxxxxxx> > Signed-off-by: Danilo Krummrich <dakr@xxxxxxxxxx> > --- > rust/kernel/device_id.rs | 336 +++++++++++++++++++++++++++++++++++++++ > rust/kernel/lib.rs | 2 + > 2 files changed, 338 insertions(+) > create mode 100644 rust/kernel/device_id.rs > > diff --git a/rust/kernel/device_id.rs b/rust/kernel/device_id.rs > new file mode 100644 > index 000000000000..c490300f29bb > --- /dev/null > +++ b/rust/kernel/device_id.rs While I see the temptation to attempt to create a generic class for ids, this is all VERY bus specific. Please just stick with a simple C array for now, trying to mess with generic array types of arbitrary structures and values and fields is a fun exercise in rust macros, but ick, let's worry about that much later. Try to do something "simple" if you really must, like just a pci device id list, and if that works, then try USB ids. And then, if you think they look comon, THEN think about maybe combining them into something that looks crazy like this. But not now, no, please, keep it simple. Stick to C arrays. greg k-h