Page MenuHomeFreeBSD

sound: Improve snd_midi->{in,out}q allocation
ClosedPublic

Authored by christos on Dec 8 2025, 5:13 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 15, 3:54 AM
Unknown Object (File)
Tue, Apr 7, 3:24 PM
Unknown Object (File)
Sat, Apr 4, 3:24 AM
Unknown Object (File)
Tue, Mar 24, 4:22 PM
Unknown Object (File)
Mon, Mar 23, 9:59 PM
Unknown Object (File)
Mar 15 2026, 4:57 AM
Unknown Object (File)
Mar 10 2026, 3:16 AM
Unknown Object (File)
Feb 18 2026, 11:35 AM
Subscribers

Details

Summary

Currently we lock and allocate the buffers with M_NOWAIT, without
checking if the return value of malloc(). This is not necessary as
subsequent check below will eventually check that. However, for
correctness, allocate the buffers with M_WAITOK (there is no reason not
to) and lock afterwards.

Sponsored by: The FreeBSD Foundation
MFC after: 1 week

Diff Detail

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