* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2005-07-23 16:23 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2005-07-23 16:23 UTC (permalink / raw)
To: alsa-devel
The following issue has been SUBMITTED.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 07-23-2005 18:23 CEST
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
======================================================================
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2005-07-29 16:02 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2005-07-29 16:02 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 07-29-2005 18:02 CEST
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
----------------------------------------------------------------------
tiwai - 07-29-05 18:02
----------------------------------------------------------------------
Isn't is already fixed in 1.0.9?
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
07-29-05 18:02 tiwai Note Added: 0005584
======================================================================
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO September
19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2005-08-01 6:09 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2005-08-01 6:09 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 08-01-2005 08:09 CEST
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
----------------------------------------------------------------------
tiwai - 07-29-05 18:02
----------------------------------------------------------------------
Isn't is already fixed in 1.0.9?
----------------------------------------------------------------------
jdthood - 08-01-05 08:09
----------------------------------------------------------------------
No, the submitter reports that the bug is still present in 1.0.9.
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
07-29-05 18:02 tiwai Note Added: 0005584
08-01-05 08:09 jdthood Note Added: 0005594
======================================================================
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2005-12-30 22:38 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2005-12-30 22:38 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 12-30-2005 23:38 CET
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
----------------------------------------------------------------------
jdthood - 08-01-05 08:09
----------------------------------------------------------------------
No, the submitter reports that the bug is still present in 1.0.9.
----------------------------------------------------------------------
rlrevell - 12-30-05 23:38
----------------------------------------------------------------------
Was this ever resolved?
(BTW The ALSA bug tracker should have a PATCH status)
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
07-29-05 18:02 tiwai Note Added: 0005584
08-01-05 08:09 jdthood Note Added: 0005594
12-30-05 23:38 rlrevell Note Added: 0007295
======================================================================
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2006-01-04 22:46 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2006-01-04 22:46 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To:
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 01-04-2006 23:46 CET
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
----------------------------------------------------------------------
rlrevell - 12-30-05 23:38
----------------------------------------------------------------------
Was this ever resolved?
(BTW The ALSA bug tracker should have a PATCH status)
----------------------------------------------------------------------
nboullis - 01-04-06 23:46
----------------------------------------------------------------------
Hi!
I am the person who originally submitted this report to the Debian Bug
Tracking System.
I just checked with alsa-lib 1.0.11rc2 and alsa-oss 1.0.10, and can
confirm that this bug has not been fixed.
Since my initial report and patch, I understood a little more about alsa,
and produced a new (supposedly better) patch that I just attached.
It would be nice if this could be fixed.
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
07-29-05 18:02 tiwai Note Added: 0005584
08-01-05 08:09 jdthood Note Added: 0005594
12-30-05 23:38 rlrevell Note Added: 0007295
01-04-06 22:11 nboullis Issue Monitored: nboullis
01-04-06 23:42 nboullis File Added: alsa-oss.patch
01-04-06 23:46 nboullis Note Added: 0007460
======================================================================
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ALSA - liboss 0001278]: fails to read volume for software volume control
@ 2006-01-05 18:47 bugtrack
0 siblings, 0 replies; 6+ messages in thread
From: bugtrack @ 2006-01-05 18:47 UTC (permalink / raw)
To: alsa-devel
The following issue has been RESOLVED.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1278>
======================================================================
Reported By: jdthood
Assigned To: tiwai
======================================================================
Project: ALSA - liboss
Issue ID: 1278
Category:
Reproducibility: always
Severity: major
Priority: normal
Status: resolved
Resolution: fixed
Fixed in Version:
======================================================================
Date Submitted: 07-23-2005 18:23 CEST
Last Modified: 01-05-2006 19:47 CET
======================================================================
Summary: fails to read volume for software volume control
Description:
From: http://bugs.debian.org/319628:
Package: alsa-oss
Version: 1.0.8-1
Hi,
My MacMini's audio chip seems to have no hardware volume control (or it
is unsupported in the kernel I use), so I use software volume control,
with the attached .asoundrc. (I'm still a newbie about alsa, there may
be some mistakes in my .soundrc file.)
While trying to use hotkeys (that only understands oss) with aoss, I
discovered that aoss did not allow to read the volume control, while it
can write it flawlessly.
After a few tests, I discovered that it was related to the failing
snd_mixer_selem_get_playback_switch function call, and I could
workaround the issue with the attached trivial quick&dirty patch.
Cheers,
Nicolas Boullis
-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-irma
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages alsa-oss depends on:
ii libasound2 1.0.8-3 ALSA library
ii libc6 2.3.2.ds1-22 GNU C Library: Shared
libraries an
-- no debconf information
pcm.!default {
type plug
slave {
pcm {
type softvol
slave {
pcm {
type dmix
ipc_key 7666
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
}
}
control {
name Master
card 0
}
}
}
}
pcm.dsp0 {
type plug
slave.pcm "!default"
}
only in patch2:
unchanged:
--- alsa-oss-1.0.8.orig/alsa/mixer.c
+++ alsa-oss-1.0.8/alsa/mixer.c
@@ -487,9 +487,7 @@
break;
}
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_LEFT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_LEFT, &lvol);
if (err < 0)
break;
@@ -499,9 +497,7 @@
rvol = lvol;
} else {
err = snd_mixer_selem_get_playback_switch(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &sw);
- if (err < 0)
- break;
- if (sw) {
+ if ((err < 0) || (sw)) {
err = snd_mixer_selem_get_playback_volume(elem,
SND_MIXER_SCHN_FRONT_RIGHT, &rvol);
if (err < 0)
break;
======================================================================
----------------------------------------------------------------------
nboullis - 01-04-06 23:46
----------------------------------------------------------------------
Hi!
I am the person who originally submitted this report to the Debian Bug
Tracking System.
I just checked with alsa-lib 1.0.11rc2 and alsa-oss 1.0.10, and can
confirm that this bug has not been fixed.
Since my initial report and patch, I understood a little more about alsa,
and produced a new (supposedly better) patch that I just attached.
It would be nice if this could be fixed.
----------------------------------------------------------------------
tiwai - 01-05-06 19:47
----------------------------------------------------------------------
Thanks, the patch looks fine. I applied it to CVS.
Issue History
Date Modified Username Field Change
======================================================================
07-23-05 18:23 jdthood New Issue
07-29-05 18:02 tiwai Note Added: 0005584
08-01-05 08:09 jdthood Note Added: 0005594
12-30-05 23:38 rlrevell Note Added: 0007295
01-04-06 22:11 nboullis Issue Monitored: nboullis
01-04-06 23:42 nboullis File Added: alsa-oss.patch
01-04-06 23:46 nboullis Note Added: 0007460
01-05-06 19:47 tiwai Status new => resolved
01-05-06 19:47 tiwai Resolution open => fixed
01-05-06 19:47 tiwai Assigned To => tiwai
01-05-06 19:47 tiwai Note Added: 0007476
======================================================================
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-01-05 18:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-04 22:46 [ALSA - liboss 0001278]: fails to read volume for software volume control bugtrack
-- strict thread matches above, loose matches on Subject: below --
2006-01-05 18:47 bugtrack
2005-12-30 22:38 bugtrack
2005-08-01 6:09 bugtrack
2005-07-29 16:02 bugtrack
2005-07-23 16:23 bugtrack
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox