On 09/18/2007 01:54 PM, Takashi Iwai wrote: > The other changes look good to me. But, honestly, I couldn't follow all > the pathes you sent in the right order. So, could you guys make a series > of patches to be applied to HG tree? That'll be really helpful for > review, too. Ofcourse. These schedule_timeout() fixes are not dependent on anything else. I audited alsa-kernel for this schedule_timeout() issue, and this and next two messages do all I found. === alsa-kernel: schedule_timeout() fixes Fix schedule_timeout() use in alsa-kernel. Mostly just schedule_timeout(1) --> schedule_timeout_uninterruptible(1) The wavefront_synth one fixes the surrounding loop as well. In ymfpci_main, delete a superfluous set_current_state() and in soc/soc-dapm.c replace an _interruptible with _uninterruptible in some debug code; it's not waiting for signals. Signed-off-by: Rene Herman