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)
Wed, May 6, 2:07 AM
Unknown Object (File)
Thu, Apr 30, 7:23 PM
Unknown Object (File)
Thu, Apr 30, 4:29 PM
Unknown Object (File)
Mon, Apr 27, 2:42 PM
Unknown Object (File)
Sat, Apr 25, 3:20 AM
Unknown Object (File)
Apr 21 2026, 8:28 PM
Unknown Object (File)
Apr 21 2026, 6:19 PM
Unknown Object (File)
Apr 20 2026, 11:17 PM
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