* [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock)
@ 2002-10-29 14:07 Wilfried Weissmann
2002-10-30 18:12 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Wilfried Weissmann @ 2002-10-29 14:07 UTC (permalink / raw)
To: alsa-devel
[-- Attachment #1: Type: text/plain, Size: 600 bytes --]
I dug a little around in the code. The infinitive loop was caused by
being stuck in DRAINING mode. snd_pcm_lib_read1() returns -EPIPE in this
case (pcm_lib.c: 2146). Then we return to snd_pcm_oss_read3() which
continues to call this function until jdoomsday (= SysRq+b). I changed
the code to call snd_pcm_update_hw_ptr() before that. The patch is
attached. It *seems* to fix it. You want to have a _real_ close look at
that if you want to apply the patch, as it is just a shot in the dark.
At least I know now that the problem is (I figured it out by inserting
printk).
greetings,
Wilfried
[-- Attachment #2: alsa-driver-0.9.0.rc5+loopfix.diff --]
[-- Type: text/plain, Size: 577 bytes --]
--- pcm_lib.c.bak Tue Oct 29 13:40:50 2002
+++ pcm_lib.c Tue Oct 29 14:44:42 2002
@@ -2138,7 +2138,7 @@
snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
snd_pcm_uframes_t avail;
snd_pcm_uframes_t cont;
- if (runtime->sleep_min == 0 && runtime->status->state == SNDRV_PCM_STATE_RUNNING)
+ if (runtime->sleep_min == 0 && ( runtime->status->state == SNDRV_PCM_STATE_RUNNING || runtime->status->state == SNDRV_PCM_STATE_DRAINING))
snd_pcm_update_hw_ptr(substream);
avail = snd_pcm_capture_avail(runtime);
if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock)
2002-10-29 14:07 [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock) Wilfried Weissmann
@ 2002-10-30 18:12 ` Takashi Iwai
2002-10-30 20:33 ` Jaroslav Kysela
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2002-10-30 18:12 UTC (permalink / raw)
To: Wilfried Weissmann; +Cc: alsa-devel
At Tue, 29 Oct 2002 15:07:41 +0100,
Wilfried Weissmann wrote:
>
> [1 <text/plain; us-ascii (7bit)>]
> I dug a little around in the code. The infinitive loop was caused by
> being stuck in DRAINING mode. snd_pcm_lib_read1() returns -EPIPE in this
> case (pcm_lib.c: 2146). Then we return to snd_pcm_oss_read3() which
> continues to call this function until jdoomsday (= SysRq+b). I changed
> the code to call snd_pcm_update_hw_ptr() before that. The patch is
> attached. It *seems* to fix it. You want to have a _real_ close look at
> that if you want to apply the patch, as it is just a shot in the dark.
> At least I know now that the problem is (I figured it out by inserting
> printk).
looks correct. applied to cvs now.
thanks!
Takashi
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock)
2002-10-30 18:12 ` Takashi Iwai
@ 2002-10-30 20:33 ` Jaroslav Kysela
2002-10-31 10:32 ` Wilfried Weissmann
0 siblings, 1 reply; 4+ messages in thread
From: Jaroslav Kysela @ 2002-10-30 20:33 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Wilfried Weissmann, alsa-devel@lists.sourceforge.net
On Wed, 30 Oct 2002, Takashi Iwai wrote:
> At Tue, 29 Oct 2002 15:07:41 +0100,
> Wilfried Weissmann wrote:
> >
> > [1 <text/plain; us-ascii (7bit)>]
> > I dug a little around in the code. The infinitive loop was caused by
> > being stuck in DRAINING mode. snd_pcm_lib_read1() returns -EPIPE in this
> > case (pcm_lib.c: 2146). Then we return to snd_pcm_oss_read3() which
> > continues to call this function until jdoomsday (= SysRq+b). I changed
> > the code to call snd_pcm_update_hw_ptr() before that. The patch is
> > attached. It *seems* to fix it. You want to have a _real_ close look at
> > that if you want to apply the patch, as it is just a shot in the dark.
> > At least I know now that the problem is (I figured it out by inserting
> > printk).
>
> looks correct. applied to cvs now.
It's wrong. I reverted the change and included new updated code for the
OSS emulation.
Jaroslav
-----
Jaroslav Kysela <perex@suse.cz>
Linux Kernel Sound Maintainer
ALSA Project http://www.alsa-project.org
SuSE Linux http://www.suse.com
-------------------------------------------------------
This sf.net email is sponsored by: Influence the future
of Java(TM) technology. Join the Java Community
Process(SM) (JCP(SM)) program now.
http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0004en
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock)
2002-10-30 20:33 ` Jaroslav Kysela
@ 2002-10-31 10:32 ` Wilfried Weissmann
0 siblings, 0 replies; 4+ messages in thread
From: Wilfried Weissmann @ 2002-10-31 10:32 UTC (permalink / raw)
To: Jaroslav Kysela; +Cc: Takashi Iwai, alsa-devel@lists.sourceforge.net
Jaroslav Kysela wrote:
> On Wed, 30 Oct 2002, Takashi Iwai wrote:
>>At Tue, 29 Oct 2002 15:07:41 +0100,
>>Wilfried Weissmann wrote:
>>>[1 <text/plain; us-ascii (7bit)>]
>>>I dug a little around in the code. The infinitive loop was caused by
>>>being stuck in DRAINING mode. snd_pcm_lib_read1() returns -EPIPE in this
>>>case (pcm_lib.c: 2146). Then we return to snd_pcm_oss_read3() which
>>>continues to call this function until jdoomsday (= SysRq+b). I changed
>>>the code to call snd_pcm_update_hw_ptr() before that. The patch is
>>>attached. It *seems* to fix it. You want to have a _real_ close look at
>>>that if you want to apply the patch, as it is just a shot in the dark.
>>>At least I know now that the problem is (I figured it out by inserting
>>>printk).
>>
>>looks correct. applied to cvs now.
>
>
> It's wrong. I reverted the change and included new updated code for the
> OSS emulation.
I just tested the new patch. It works perfectly. Thanks all.
bye,
Wilfried
-------------------------------------------------------
This sf.net email is sponsored by: Influence the future
of Java(TM) technology. Join the Java Community
Process(SM) (JCP(SM)) program now.
http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0004en
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-10-31 10:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-29 14:07 [patch] pcm-record (was cs46xx record (Thinkpad A22) => deadlock) Wilfried Weissmann
2002-10-30 18:12 ` Takashi Iwai
2002-10-30 20:33 ` Jaroslav Kysela
2002-10-31 10:32 ` Wilfried Weissmann
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.