Page MenuHomeFreeBSD

sound: Retire feedertab_entry
ClosedPublic

Authored by christos on Nov 3 2025, 3:30 PM.
Tags
None
Referenced Files
F154073474: D53554.diff
Sat, Apr 25, 11:21 PM
F154024191: D53554.diff
Sat, Apr 25, 1:25 PM
Unknown Object (File)
Fri, Apr 24, 5:47 PM
Unknown Object (File)
Wed, Apr 22, 4:12 AM
Unknown Object (File)
Wed, Apr 22, 12:31 AM
Unknown Object (File)
Tue, Apr 21, 5:11 PM
Unknown Object (File)
Tue, Apr 21, 4:53 AM
Unknown Object (File)
Mon, Apr 20, 3:27 AM
Subscribers

Details

Summary

Have an SLIST of feeder_class directly. This way we simplify the code,
and also avoid the additional malloc()/free() for each entry.

Sponsored by: The FreeBSD Foundation
MFC after: 1 week

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 68378
Build 65261: arc lint + arc unit

Event Timeline

sys/dev/sound/pcm/feeder.c
44

How is this list locked?

75

This loop can be replaced by SLIST_INIT(&feedertab);

christos marked an inline comment as done.

Address Mark's comment.

sys/dev/sound/pcm/feeder.c
44

It isn't. This list is created once after sound.ko has been loaded, and destroyed on unload. There is no adding/removing in the meantime.

This revision is now accepted and ready to land.Nov 4 2025, 12:51 PM
This revision was automatically updated to reflect the committed changes.