Bug #1974
closed[PATCH] sound/pcm: we can wait when mallocing in feed_rate_init
0%
Description
After a few days of uptime and playing movies/listening to music I was not able
to open /dev/dsp anymore (only already existing /dev/dsp0.X devices worked, no
new ones could be opened).
The problem is in M_NOWAIT flag for the kmallocs in feed_rate_init(). We can
wait at that point and my system has been running with this patch for almost a
week and still sound functioned normally.
--
Please do not CC me, since I already receive everything from these MLs.
Regards,
Rumko
Files
Updated by pavalos almost 14 years ago
On Sat, Jan 29, 2011 at 12:43:25AM +0100, Rumko wrote:
After a few days of uptime and playing movies/listening to music I was not able
to open /dev/dsp anymore (only already existing /dev/dsp0.X devices worked, no
new ones could be opened).
The problem is in M_NOWAIT flag for the kmallocs in feed_rate_init(). We can
wait at that point and my system has been running with this patch for almost a
week and still sound functioned normally.
This fixes my sound problem on my laptop.
Thanks!
Peter
Updated by dillon almost 14 years ago
:On Sat, Jan 29, 2011 at 12:43:25AM +0100, Rumko wrote:
:> After a few days of uptime and playing movies/listening to music I was not able
:> to open /dev/dsp anymore (only already existing /dev/dsp0.X devices worked, no
:> new ones could be opened).
:> The problem is in M_NOWAIT flag for the kmallocs in feed_rate_init(). We can
:> wait at that point and my system has been running with this patch for almost a
:> week and still sound functioned normally.
:
:This fixes my sound problem on my laptop.
:
:Thanks!
:Peter
I have committed the patch plus I have gone through every single
kmalloc in /usr/src/sys/dev/sound and fixed the M_NOWAITs -> M_WAITOKs.
-Matt
Matthew Dillon
<dillon@backplane.com>
Updated by pavalos almost 14 years ago
Fixed in 77bcca08d8bbe55e472046972138522b0652c79a.