Page MenuHomeFreeBSD

stand/usb: Update for devclass being removed from DRIVER_MODULE
ClosedPublic

Authored by jhb on Jan 10 2025, 3:22 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 26, 10:40 PM
Unknown Object (File)
Wed, Mar 18, 12:11 PM
Unknown Object (File)
Wed, Mar 18, 5:25 AM
Unknown Object (File)
Tue, Mar 10, 2:55 AM
Unknown Object (File)
Feb 20 2026, 1:28 AM
Unknown Object (File)
Feb 8 2026, 3:34 PM
Unknown Object (File)
Feb 8 2026, 10:06 AM
Unknown Object (File)
Feb 5 2026, 4:48 AM
Subscribers

Details

Summary

The kshim code abused the devclass argument to DRIVER_MODULE in some
odd ways. Instead, refactor the devclass handling to more closely
mirror what new-bus does in the kernel by having a linked list of
devclasses looked up by name and associate devices with a devclass.

Devices are now only associated with a module while probing and
attaching.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.Jan 10 2025, 3:22 AM

Love the concept. Spot checked the impl. Structure is good, but didn't dive deeply in.

This revision is now accepted and ready to land.Jan 10 2025, 4:40 AM