/dev/dsp currently acts as a symlink to /dev/dsp${hw.snd.default_unit}.
A big issue with this, however, is that applications cannot use it as a
generic default device, which under the hood does the necessary routing
to the appropriate device(s). For this reason many users rely on
virtual_oss to override /dev/dsp with its own, which does act as a
router device.
This patch implements a new /dev/vdsp device which is responsible for
dispatching to /dev/dsp${hw.snd.default_unit}. For ease of use,
dsp_clone() is modified to clone /dev/vdsp instead of
/dev/dsp${hw.snd.default_unit}. The advantage of this approach is that,
applications can now open /dev/dsp and not have to worry about the
device going away, or the default unit changing and having to re-open
and re-configure the new device. They can simply open /dev/dsp and
sound(4) will do all the necessary routing to the default device.
This means we now have hot-swapping built into sound(4), and use of an
audio server (e.g., virtual_oss) for this purpose is no longer needed.
Hot-unplug also works with no problems.
The bulk of the mechanism is implemented in vdsp_getdev(). Please refer
to its comments for a more in-depth explanation.
Sponsored by: The FreeBSD Foundation
MFC after: 1 month