ALSA: seq: bind seq driver automatically
authorTakashi Iwai <tiwai@suse.de>
Wed, 15 Oct 2014 12:06:25 +0000 (14:06 +0200)
committerTakashi Iwai <tiwai@suse.de>
Sat, 18 Oct 2014 18:25:12 +0000 (20:25 +0200)
commit68ab61084de3220e2fb0a698c890ba91decddc85
tree3a39c406c22fc8a5646c27e6a27994041ef62bc0
parent54841a06c54eb55918948c12ab9b5f02cacb6ab3
ALSA: seq: bind seq driver automatically

Currently the sequencer module binding is performed independently from
the card module itself.  The reason behind it is to keep the sequencer
stuff optional and allow the system running without it (e.g. for using
PCM or rawmidi only).  This works in most cases, but a remaining
problem is that the binding isn't done automatically when a new driver
module is probed.  Typically this becomes visible when a hotplug
driver like usb audio is used.

This patch tries to address this and other potential issues.  First,
the seq-binder (seq_device.c) tries to load a missing driver module at
creating a new device object.  This is done asynchronously in a workq
for avoiding the deadlock (modprobe call in module init path).

This action, however, should be enabled only when the sequencer stuff
was already initialized, i.e. snd-seq module was already loaded.  For
that, a new function, snd_seq_autoload_init() is introduced here; this
clears the blocking of autoloading, and also tries to load all pending
driver modules.

Reported-by: Adam Goode <agoode@chromium.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/sound/seq_kernel.h
sound/core/seq/seq.c
sound/core/seq/seq_device.c