Page MenuHomeFreeBSD

sound: Retire feedertab_entry
ClosedPublic

Authored by christos on Nov 3 2025, 3:30 PM.
Tags
None
Referenced Files
F154294665: D53554.id166217.diff
Mon, Apr 27, 4:15 PM
F154201917: D53554.id.diff
Mon, Apr 27, 1:49 AM
Unknown Object (File)
Sat, Apr 25, 11:21 PM
Unknown Object (File)
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
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 Not Applicable
Unit
Tests Not Applicable

Event Timeline

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

How is this list locked?

71

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.