<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git/sound, branch linux-2.6.18.y</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=linux-2.6.18.y</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=linux-2.6.18.y'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2006-11-04T01:33:48+00:00</updated>
<entry>
<title>[PATCH] ALSA: snd_rtctimer: handle RTC interrupts with a tasklet</title>
<updated>2006-11-04T01:33:48+00:00</updated>
<author>
<name>Clemens Ladisch</name>
<email>clemens@ladisch.de</email>
</author>
<published>2006-10-27T12:15:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=c8ec7067774748f29dae43682df884d329a7cb9e'/>
<id>urn:sha1:c8ec7067774748f29dae43682df884d329a7cb9e</id>
<content type='text'>
The calls to rtc_control() from inside the interrupt handler can
deadlock the RTC code, so move our interrupt handling code to a tasklet.

Signed-off-by: Clemens Ladisch &lt;clemens@ladisch.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: Fix re-use of va_list</title>
<updated>2006-11-04T01:33:46+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2006-10-24T12:55:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=1e4007bf4ef92fc6d2afa418c1b49921a7c7d0b3'/>
<id>urn:sha1:1e4007bf4ef92fc6d2afa418c1b49921a7c7d0b3</id>
<content type='text'>
The va_list is designed to be used only once.  The current code
may pass va_list arguments multiple times and may cause Oops.
Copy/release the arguments temporarily to avoid this problem.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: Repair snd-usb-usx2y for usb 2.6.18</title>
<updated>2006-11-04T01:33:45+00:00</updated>
<author>
<name>Karsten Wiese</name>
<email>annabellesgarden@yahoo.de</email>
</author>
<published>2006-10-16T12:46:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=45f08385d341d43927e936c69b5bdd4b07f1eb40'/>
<id>urn:sha1:45f08385d341d43927e936c69b5bdd4b07f1eb40</id>
<content type='text'>
ALSA: Repair snd-usb-usx2y for usb 2.6.18

urb-&gt;start_frame rolls over beyond MAX_INT now.
This is for stable kernel and stable alsa.

From: Karsten Wiese &lt;annabellesgarden@yahoo.de&gt;
Signed-off-by: Karsten Wiese &lt;annabellesgarden@yahoo.de&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: Fix bug in snd-usb-usx2y's usX2Y_pcms_lock_check()</title>
<updated>2006-11-04T01:33:45+00:00</updated>
<author>
<name>Karsten Wiese</name>
<email>annabellesgarden@yahoo.de</email>
</author>
<published>2006-10-16T12:45:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=0e98aebf2acaa92ca16bf2968b85b3c19da35dc3'/>
<id>urn:sha1:0e98aebf2acaa92ca16bf2968b85b3c19da35dc3</id>
<content type='text'>
Fix bug in snd-usb-usx2y's usX2Y_pcms_lock_check()

substream can be NULL......
in mainline, bug was introduced by:
2006-06-22  [ALSA] Add O_APPEND flag support to PCM

From: Karsten Wiese &lt;annabellesgarden@yahoo.de&gt;
Signed-off-by: Karsten Wiese &lt;annabellesgarden@yahoo.de&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: Dereference after free in snd_hwdep_release()</title>
<updated>2006-11-04T01:33:45+00:00</updated>
<author>
<name>Florin Malita</name>
<email>fmalita@gmail.com</email>
</author>
<published>2006-10-16T12:43:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=e0cd3e38de139be4929fe8b18d85da585580420b'/>
<id>urn:sha1:e0cd3e38de139be4929fe8b18d85da585580420b</id>
<content type='text'>
snd_card_file_remove() may free hw-&gt;card so we can't dereference
hw-&gt;card-&gt;module after that.

Coverity ID 1420.

This bug actually causes an Oops at usb-disconnection, especially
with CONFIG_PREEMPT.

From: Florin Malita &lt;fmalita@gmail.com&gt;
Signed-off-by: Florin Malita &lt;fmalita@gmail.com&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] sound/pci/au88x0/au88x0.c: ioremap balanced with iounmap</title>
<updated>2006-11-04T01:33:44+00:00</updated>
<author>
<name>Amol Lad</name>
<email>amol@verismonetworks.com</email>
</author>
<published>2006-10-16T12:39:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=0136d6eaf1356d5c484e84664f7688de895daaf6'/>
<id>urn:sha1:0136d6eaf1356d5c484e84664f7688de895daaf6</id>
<content type='text'>
From: Amol Lad &lt;amol@verismonetworks.com&gt;
Signed-off-by: Amol Lad &lt;amol@verismonetworks.com&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: powermac - Fix Oops when conflicting with aoa driver</title>
<updated>2006-11-04T01:33:44+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2006-10-16T12:37:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=0189ff18b9354352be1bdc9f1741ead538196adf'/>
<id>urn:sha1:0189ff18b9354352be1bdc9f1741ead538196adf</id>
<content type='text'>
Fixed Oops when conflictin with aoa driver due to lack of
i2c initialization.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ALSA: emu10k1: Fix outl() in snd_emu10k1_resume_regs()</title>
<updated>2006-11-04T01:33:44+00:00</updated>
<author>
<name>Arnaud Patard</name>
<email>arnaud.patard@rtp-net.org</email>
</author>
<published>2006-10-16T12:35:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=9e3fb449a46c40b3815d53d5c749066bd436a9b1'/>
<id>urn:sha1:9e3fb449a46c40b3815d53d5c749066bd436a9b1</id>
<content type='text'>
The emu10k1 driver saves the A_IOCFG and HCFG register on suspend and restores
it on resumes. Unfortunately, this doesn't work as the arguments to outl() are
reversed.

From: Arnaud Patard &lt;arnaud.patard@rtp-net.org&gt;
Signed-off-by: Arnaud Patard &lt;arnaud.patard@rtp-net.org&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Chris Wright &lt;chrisw@sous-sol.org&gt;
</content>
</entry>
<entry>
<title>ALSA: Fix initiailization of user-space controls</title>
<updated>2006-10-13T20:23:22+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2006-09-25T09:49:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=566047d531c7853f5ed7d7638c4064aaf525b3b2'/>
<id>urn:sha1:566047d531c7853f5ed7d7638c4064aaf525b3b2</id>
<content type='text'>
ALSA: Fix initiailization of user-space controls

Fix an assertion when accessing a user-defined control due to lack of
initialization (appears only when CONFIG_SND_DEBUg is enabled).

  ALSA sound/core/control.c:660: BUG? (info-&gt;access == 0)

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>[PATCH] ALSA: ac97: correct some Mic mixer elements</title>
<updated>2006-09-01T18:39:10+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2006-09-01T04:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=7931e2a92b4de23093362308087daa8aabd3848a'/>
<id>urn:sha1:7931e2a92b4de23093362308087daa8aabd3848a</id>
<content type='text'>
Revert the mixer element names of some Mic controls to the state of
2.6.17.  This should fix the name mismatch in alsactl.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Cc: Jaroslav Kysela &lt;perex@suse.cz&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
</feed>
