Page MenuHomeFreeBSD

sound: Remove useless newspd check in sysctl_dev_pcm_vchanrate()
ClosedPublic

Authored by christos on Sep 28 2024, 3:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 17, 8:21 AM
Unknown Object (File)
Tue, Nov 5, 2:19 PM
Unknown Object (File)
Mon, Oct 28, 11:03 AM
Unknown Object (File)
Fri, Oct 25, 2:36 AM
Unknown Object (File)
Thu, Oct 24, 8:24 PM
Unknown Object (File)
Oct 18 2024, 11:56 AM
Unknown Object (File)
Oct 18 2024, 3:02 AM
Unknown Object (File)
Oct 2 2024, 10:24 AM
Subscribers

Details

Summary

feeder_rate_min functions as the lower boundary.

Sponsored by: The FreeBSD Foundation
MFC after: 2 days

Diff Detail

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

Event Timeline

sys/dev/sound/pcm/vchan.c
511

We could just as well use RANGE() to fit the speed into the acceptable range, instead of returning an error.

dev_submerge.ch added inline comments.
sys/dev/sound/pcm/vchan.c
511

I'd prefer the EINVAL return here. The values close to feeder_rate_min and feeder_rate_max are unrealistic and never used in practice, going out of bounds here is almost certainly a user error.

This revision is now accepted and ready to land.Sep 29 2024, 3:08 PM