Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F150631674
D47459.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D47459.diff
View Options
diff --git a/sys/dev/sound/dummy.c b/sys/dev/sound/dummy.c
--- a/sys/dev/sound/dummy.c
+++ b/sys/dev/sound/dummy.c
@@ -67,6 +67,24 @@
struct mtx *lock;
};
+static bool
+dummy_active(struct dummy_softc *sc)
+{
+ struct dummy_chan *ch;
+ int i;
+
+ snd_mtxassert(sc->lock);
+
+ for (i = 0; i < sc->chnum; i++) {
+ ch = &sc->chans[i];
+ if (ch->run)
+ return (true);
+ }
+
+ /* No channel is running at the moment. */
+ return (false);
+}
+
static void
dummy_chan_io(void *arg)
{
@@ -74,7 +92,9 @@
struct dummy_chan *ch;
int i = 0;
- snd_mtxlock(sc->lock);
+ /* Do not reschedule if no channel is running. */
+ if (!dummy_active(sc))
+ return;
for (i = 0; i < sc->chnum; i++) {
ch = &sc->chans[i];
@@ -89,8 +109,6 @@
snd_mtxlock(sc->lock);
}
callout_schedule(&sc->callout, 1);
-
- snd_mtxunlock(sc->lock);
}
static int
@@ -179,15 +197,15 @@
switch (go) {
case PCMTRIG_START:
- if (!callout_active(&sc->callout))
- callout_reset(&sc->callout, 1, dummy_chan_io, sc);
ch->ptr = 0;
ch->run = 1;
+ callout_reset(&sc->callout, 1, dummy_chan_io, sc);
break;
case PCMTRIG_STOP:
case PCMTRIG_ABORT:
ch->run = 0;
- if (callout_active(&sc->callout))
+ /* If all channels are stopped, stop the callout as well. */
+ if (!dummy_active(sc))
callout_stop(&sc->callout);
default:
break;
@@ -292,6 +310,7 @@
sc = device_get_softc(dev);
sc->dev = dev;
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_dummy softc");
+ callout_init_mtx(&sc->callout, sc->lock, 0);
sc->cap_fmts[0] = SND_FORMAT(AFMT_S32_LE, 2, 0);
sc->cap_fmts[1] = SND_FORMAT(AFMT_S24_LE, 2, 0);
@@ -316,7 +335,6 @@
if (pcm_register(dev, status))
return (ENXIO);
mixer_init(dev, &dummy_mixer_class, sc);
- callout_init(&sc->callout, 1);
return (0);
}
@@ -327,8 +345,8 @@
struct dummy_softc *sc = device_get_softc(dev);
int err;
- callout_drain(&sc->callout);
err = pcm_unregister(dev);
+ callout_drain(&sc->callout);
snd_mtxfree(sc->lock);
return (err);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Apr 3, 11:19 PM (16 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
30784768
Default Alt Text
D47459.diff (1 KB)
Attached To
Mode
D47459: snd_dummy: Fix callout(9) races
Attached
Detach File
Event Timeline
Log In to Comment