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)
Fri, Dec 13, 12:32 PM
Unknown Object (File)
Thu, Nov 28, 11:49 AM
Unknown Object (File)
Nov 19 2024, 5:17 PM
Unknown Object (File)
Nov 18 2024, 9:36 PM
Unknown Object (File)
Nov 18 2024, 9:35 PM
Unknown Object (File)
Nov 18 2024, 7:34 PM
Unknown Object (File)
Nov 17 2024, 8:21 AM
Unknown Object (File)
Nov 5 2024, 2:19 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