Page MenuHomeFreeBSD

sound: Retire feedertab_entry
ClosedPublic

Authored by christos on Nov 3 2025, 3:30 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Sep 4, 3:06 PM
Unknown Object (File)
Thu, Sep 3, 1:21 PM
Unknown Object (File)
Wed, Sep 2, 3:09 PM
Unknown Object (File)
Mon, Aug 31, 3:23 PM
Unknown Object (File)
Thu, Aug 27, 5:36 PM
Unknown Object (File)
Thu, Aug 27, 10:20 AM
Unknown Object (File)
Wed, Aug 26, 4:41 PM
Unknown Object (File)
Wed, Aug 26, 4:41 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.