Report forwarded to debian-bugs-dist@lists.debian.org, Herbert Xu <herbert@debian.org>:
Bug#68031; Package kernel-source-2.2.17.
debian-bugs-dist@lists.debian.orgHerbert Xu
Subject: Bug#68031: oss driver doen't handle ViBRA16C IMIX control
Reply-To: Massimo Dal Zotto , 68031@bugs.debian.org
Resent-From: Massimo Dal Zotto
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Herbert Xu
Resent-Date: Mon, 31 Jul 2000 19:49:38 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 68031
X-Debian-PR-Package: kernel-source-2.2.17
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by bugs@bugs.debian.org id=B.96506888116661
(code B ref -1); Mon, 31 Jul 2000 19:49:38 GMT
From: Massimo Dal Zotto
Message-Id: <200007311824.UAA10427@nikita.dz.net>
To: submit@bugs.debian.org
Date: Mon, 31 Jul 2000 20:24:55 +0200 (MEST)
CC: Alan.Cox@linux.org
X-UIDL: b14681451f7ecb0e09c80a21ccacf7f4
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=ELM965067895-10169-0_
Content-Transfer-Encoding: 7bit
Delivered-To: submit@bugs.debian.org
--ELM965067895-10169-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Package: kernel-source-2.2.17
Version: 2.2.17pre6-1
Hi,
the sb_mixer of OSS 3.8s distributed with 2.2.x kernels has a bug in the
handling of the SOUND_MIXER_IMIX (Input Monitor) control of the sb16.
This register controls which input lines are directly connected to the
output lines of the soundcard.
The sb16_mix IMIX register is incorrectly declared as 1-bit, while it is
actually a 5-bits register with the following bit meanings:
0x10 line left
0x08 line_right
0x04 cd left
0x02 cd right
0x01 microphone
For example to listen line and cd inputs I must set the imix to 24+6.
The imix control doesn't work at all with the standard driver, while with
a patched kernel I can enable/disable the input monitor for any individual
input channel.
My soundcard is a Creative SoundBlaster ViBRA16C, pnpdump says:
# Card 1: (serial identifier e5 ff ff ff ff 70 00 8c 0e)
# Vendor Id CTL0070, No Serial Number (-1), checksum 0xE5.
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative ViBRA16C PnP<--
I understant that this is an old card and probably not widely used but it is
very annoying having to recompile every new version of the kernel only for
being able to control the mixer.
The patch in the attachment fixes the bug. Please apply it.
--
Massimo Dal Zotto
+----------------------------------------------------------------------+
| Massimo Dal Zotto email: dz@cs.unitn.it |
| Via Marconi, 141 phone: ++39-0461534251 |
| 38057 Pergine Valsugana (TN) www: http://www.cs.unitn.it/~dz/ |
| Italy pgp: finger dz@tango.cs.unitn.it |
+----------------------------------------------------------------------+
--ELM965067895-10169-0_
Content-Type: text/plain
Content-Disposition: inline; filename="/tmp/sb_mixer.patch"
Content-Transfer-Encoding: quoted-printable
--- drivers/sound/sb_mixer.c.orig Mon Aug 9 21:04:40 1999
+++ drivers/sound/sb_mixer.c Mon Jul 31 13:41:39 2000
@@ -109,7 +109,7 @@
MIX_ENT(SOUND_MIXER_LINE, 0x38, 7, 5, 0x39, 7, 5),
MIX_ENT(SOUND_MIXER_MIC, 0x3a, 7, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_CD, 0x36, 7, 5, 0x37, 7, 5),
-MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 0, 1, 0x00, 0, 0),
+MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 4, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_RECLEV, 0x3f, 7, 2, 0x40, 7, 2), /* Obsolete. Use IGAI=
N */
MIX_ENT(SOUND_MIXER_IGAIN, 0x3f, 7, 2, 0x40, 7, 2),
@@ -597,6 +597,13 @@
=20
case SOUND_MIXER_OUTSRC:
ret =3D set_outmask(devc, val);
+ break;
+
+ case SOUND_MIXER_IMIX:
+ val =3D *(int *) arg;
+ devc->levels[SOUND_MIXER_IMIX] =3D val & 0x1f;
+ sb_setmixer (devc, 0x3c, val);
+ return val;
break;
=20
default:
--ELM965067895-10169-0_
--ELM965067895-10169-0_--
Acknowledgement sent to Massimo Dal Zotto <dz@cs.unitn.it>:
New Bug report received and forwarded. Copy sent to Herbert Xu <herbert@debian.org>.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Massimo Dal Zotto
Subject: Bug#68031: Acknowledgement (oss driver doen't handle ViBRA16C IMIX control)
Message-ID:
In-Reply-To: <200007311824.UAA10427@nikita.dz.net>
References: <200007311824.UAA10427@nikita.dz.net>
X-Debian-PR-Message: ack 68031
Thank you for the problem report you have sent regarding Debian.
This is an automatically generated reply, to let you know your message has
been received. It is being forwarded to the developers mailing list for
their attention; they will reply in due course.
Your message has been sent to the package maintainer(s):
Herbert Xu
If you wish to submit further information on your problem, please send
it to 68031@bugs.debian.org (and *not* to
bugs@bugs.debian.org).
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Darren Benham
(administrator, Debian Bugs database)
Received: (at submit) by bugs.debian.org; 31 Jul 2000 18:41:21 +0000
From dz@cs.unitn.it Mon Jul 31 13:41:20 2000
Return-path:
Received: from (nikita.dz.net) [213.192.16.21]
by master.debian.org with esmtp (Exim 3.12 2 (Debian))
id 13JKV4-0004Jx-00; Mon, 31 Jul 2000 13:41:19 -0500
Received: (from dz@localhost)
by nikita.dz.net (8.9.3/8.9.3/Debian 8.9.3-21) id UAA10427;
Mon, 31 Jul 2000 20:24:55 +0200
From: Massimo Dal Zotto
Message-Id: <200007311824.UAA10427@nikita.dz.net>
Subject: oss driver doen't handle ViBRA16C IMIX control
To: submit@bugs.debian.org
Date: Mon, 31 Jul 2000 20:24:55 +0200 (MEST)
CC: Alan.Cox@linux.org
X-UIDL: b14681451f7ecb0e09c80a21ccacf7f4
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=ELM965067895-10169-0_
Content-Transfer-Encoding: 7bit
Delivered-To: submit@bugs.debian.org
--ELM965067895-10169-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Package: kernel-source-2.2.17
Version: 2.2.17pre6-1
Hi,
the sb_mixer of OSS 3.8s distributed with 2.2.x kernels has a bug in the
handling of the SOUND_MIXER_IMIX (Input Monitor) control of the sb16.
This register controls which input lines are directly connected to the
output lines of the soundcard.
The sb16_mix IMIX register is incorrectly declared as 1-bit, while it is
actually a 5-bits register with the following bit meanings:
0x10 line left
0x08 line_right
0x04 cd left
0x02 cd right
0x01 microphone
For example to listen line and cd inputs I must set the imix to 24+6.
The imix control doesn't work at all with the standard driver, while with
a patched kernel I can enable/disable the input monitor for any individual
input channel.
My soundcard is a Creative SoundBlaster ViBRA16C, pnpdump says:
# Card 1: (serial identifier e5 ff ff ff ff 70 00 8c 0e)
# Vendor Id CTL0070, No Serial Number (-1), checksum 0xE5.
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative ViBRA16C PnP<--
I understant that this is an old card and probably not widely used but it is
very annoying having to recompile every new version of the kernel only for
being able to control the mixer.
The patch in the attachment fixes the bug. Please apply it.
--
Massimo Dal Zotto
+----------------------------------------------------------------------+
| Massimo Dal Zotto email: dz@cs.unitn.it |
| Via Marconi, 141 phone: ++39-0461534251 |
| 38057 Pergine Valsugana (TN) www: http://www.cs.unitn.it/~dz/ |
| Italy pgp: finger dz@tango.cs.unitn.it |
+----------------------------------------------------------------------+
--ELM965067895-10169-0_
Content-Type: text/plain
Content-Disposition: inline; filename="/tmp/sb_mixer.patch"
Content-Transfer-Encoding: quoted-printable
--- drivers/sound/sb_mixer.c.orig Mon Aug 9 21:04:40 1999
+++ drivers/sound/sb_mixer.c Mon Jul 31 13:41:39 2000
@@ -109,7 +109,7 @@
MIX_ENT(SOUND_MIXER_LINE, 0x38, 7, 5, 0x39, 7, 5),
MIX_ENT(SOUND_MIXER_MIC, 0x3a, 7, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_CD, 0x36, 7, 5, 0x37, 7, 5),
-MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 0, 1, 0x00, 0, 0),
+MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 4, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_RECLEV, 0x3f, 7, 2, 0x40, 7, 2), /* Obsolete. Use IGAI=
N */
MIX_ENT(SOUND_MIXER_IGAIN, 0x3f, 7, 2, 0x40, 7, 2),
@@ -597,6 +597,13 @@
=20
case SOUND_MIXER_OUTSRC:
ret =3D set_outmask(devc, val);
+ break;
+
+ case SOUND_MIXER_IMIX:
+ val =3D *(int *) arg;
+ devc->levels[SOUND_MIXER_IMIX] =3D val & 0x1f;
+ sb_setmixer (devc, 0x3c, val);
+ return val;
break;
=20
default:
--ELM965067895-10169-0_
--ELM965067895-10169-0_--
Reply sent to Herbert Xu <herbert@gondor.apana.org.au>:
You have marked Bug as forwarded.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Herbert Xu
Cc: Herbert Xu
Bcc: debian-bugs-forwarded@lists.debian.org
Subject: Bug#68031: marked as forwarded (oss driver doen't handle ViBRA16C IMIX control)
Message-ID:
In-Reply-To: <20000910121950.A30484@gondor.apana.org.au>
References: <20000910121950.A30484@gondor.apana.org.au> <200007311824.UAA10427@nikita.dz.net>
X-Debian-PR-Message: forwarded 68031
Your message dated Sun, 10 Sep 2000 12:19:50 +1100
with message-id <20000910121950.A30484@gondor.apana.org.au>
and subject line [dz@cs.unitn.it: Bug#68031: oss driver doen't handle ViBRA16C IMIX control]
has caused the Debian Bug report #68031,
regarding oss driver doen't handle ViBRA16C IMIX control
to be marked as having been forwarded to the upstream software
author(s) alan@redhat.com, 68031-forwarded@bugs.debian.org.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Darren Benham
(administrator, Debian Bugs database)
Received: (at submit) by bugs.debian.org; 31 Jul 2000 18:41:21 +0000
From dz@cs.unitn.it Mon Jul 31 13:41:20 2000
Return-path:
Received: from (nikita.dz.net) [213.192.16.21]
by master.debian.org with esmtp (Exim 3.12 2 (Debian))
id 13JKV4-0004Jx-00; Mon, 31 Jul 2000 13:41:19 -0500
Received: (from dz@localhost)
by nikita.dz.net (8.9.3/8.9.3/Debian 8.9.3-21) id UAA10427;
Mon, 31 Jul 2000 20:24:55 +0200
From: Massimo Dal Zotto
Message-Id: <200007311824.UAA10427@nikita.dz.net>
Subject: oss driver doen't handle ViBRA16C IMIX control
To: submit@bugs.debian.org
Date: Mon, 31 Jul 2000 20:24:55 +0200 (MEST)
CC: Alan.Cox@linux.org
X-UIDL: b14681451f7ecb0e09c80a21ccacf7f4
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=ELM965067895-10169-0_
Content-Transfer-Encoding: 7bit
Delivered-To: submit@bugs.debian.org
--ELM965067895-10169-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Package: kernel-source-2.2.17
Version: 2.2.17pre6-1
Hi,
the sb_mixer of OSS 3.8s distributed with 2.2.x kernels has a bug in the
handling of the SOUND_MIXER_IMIX (Input Monitor) control of the sb16.
This register controls which input lines are directly connected to the
output lines of the soundcard.
The sb16_mix IMIX register is incorrectly declared as 1-bit, while it is
actually a 5-bits register with the following bit meanings:
0x10 line left
0x08 line_right
0x04 cd left
0x02 cd right
0x01 microphone
For example to listen line and cd inputs I must set the imix to 24+6.
The imix control doesn't work at all with the standard driver, while with
a patched kernel I can enable/disable the input monitor for any individual
input channel.
My soundcard is a Creative SoundBlaster ViBRA16C, pnpdump says:
# Card 1: (serial identifier e5 ff ff ff ff 70 00 8c 0e)
# Vendor Id CTL0070, No Serial Number (-1), checksum 0xE5.
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative ViBRA16C PnP<--
I understant that this is an old card and probably not widely used but it is
very annoying having to recompile every new version of the kernel only for
being able to control the mixer.
The patch in the attachment fixes the bug. Please apply it.
--
Massimo Dal Zotto
+----------------------------------------------------------------------+
| Massimo Dal Zotto email: dz@cs.unitn.it |
| Via Marconi, 141 phone: ++39-0461534251 |
| 38057 Pergine Valsugana (TN) www: http://www.cs.unitn.it/~dz/ |
| Italy pgp: finger dz@tango.cs.unitn.it |
+----------------------------------------------------------------------+
--ELM965067895-10169-0_
Content-Type: text/plain
Content-Disposition: inline; filename="/tmp/sb_mixer.patch"
Content-Transfer-Encoding: quoted-printable
--- drivers/sound/sb_mixer.c.orig Mon Aug 9 21:04:40 1999
+++ drivers/sound/sb_mixer.c Mon Jul 31 13:41:39 2000
@@ -109,7 +109,7 @@
MIX_ENT(SOUND_MIXER_LINE, 0x38, 7, 5, 0x39, 7, 5),
MIX_ENT(SOUND_MIXER_MIC, 0x3a, 7, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_CD, 0x36, 7, 5, 0x37, 7, 5),
-MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 0, 1, 0x00, 0, 0),
+MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 4, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_RECLEV, 0x3f, 7, 2, 0x40, 7, 2), /* Obsolete. Use IGAI=
N */
MIX_ENT(SOUND_MIXER_IGAIN, 0x3f, 7, 2, 0x40, 7, 2),
@@ -597,6 +597,13 @@
=20
case SOUND_MIXER_OUTSRC:
ret =3D set_outmask(devc, val);
+ break;
+
+ case SOUND_MIXER_IMIX:
+ val =3D *(int *) arg;
+ devc->levels[SOUND_MIXER_IMIX] =3D val & 0x1f;
+ sb_setmixer (devc, 0x3c, val);
+ return val;
break;
=20
default:
--ELM965067895-10169-0_
--ELM965067895-10169-0_--
Received: (at 68031-forwarded) by bugs.debian.org; 10 Sep 2000 01:20:25 +0000
From herbert@gondor.apana.org.au Sat Sep 09 20:20:25 2000
Return-path:
Received: from gondor.apana.org.au [::ffff:203.14.152.114]
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 13XvnB-00045Y-00; Sat, 09 Sep 2000 20:20:23 -0500
Received: (from herbert@localhost)
by gondor.apana.org.au (8.11.0.Beta1/8.11.0.Beta1/Debian 8.11.0-1) id e8A1JpF30594;
Sun, 10 Sep 2000 12:19:51 +1100
From: Herbert Xu
Date: Sun, 10 Sep 2000 12:19:50 +1100
To: alan@redhat.com, 68031-forwarded@bugs.debian.org
Cc: Massimo Dal Zotto
Subject: [dz@cs.unitn.it: Bug#68031: oss driver doen't handle ViBRA16C IMIX control]
Message-ID: <20000910121950.A30484@gondor.apana.org.au>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="PEIAKu/WMn1b1Hv9"
Content-Disposition: inline
User-Agent: Mutt/1.2i
Delivered-To: 68031-forwarded@bugs.debian.org
--PEIAKu/WMn1b1Hv9
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
I apologise if you've already received this.
--
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email: Herbert Xu ~{PmV>HI~}
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--PEIAKu/WMn1b1Hv9
Content-Type: message/rfc822
Content-Disposition: inline
Return-Path:
Received: from master.debian.org (mail@master.debian.org [216.234.231.5])
by gondor.apana.org.au (8.11.0.Beta1/8.11.0.Beta1/Debian 8.11.0-1) with ESMTP id e6VJnja14917
for ; Tue, 1 Aug 2000 05:49:46 +1000
Received: from gecko by master.debian.org with local (Exim 3.12 2 (Debian))
id 13JLZE-000131-00; Mon, 31 Jul 2000 14:49:40 -0500
Subject: Bug#68031: oss driver doen't handle ViBRA16C IMIX control
Reply-To: Massimo Dal Zotto , 68031@bugs.debian.org
Resent-From: Massimo Dal Zotto
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Herbert Xu
Resent-Date: Mon, 31 Jul 2000 19:49:38 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 68031
X-Debian-PR-Package: kernel-source-2.2.17
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by bugs@bugs.debian.org id=B.96506888116661
(code B ref -1); Mon, 31 Jul 2000 19:49:38 GMT
From: Massimo Dal Zotto
Message-Id: <200007311824.UAA10427@nikita.dz.net>
To: submit@bugs.debian.org
Date: Mon, 31 Jul 2000 20:24:55 +0200 (MEST)
CC: Alan.Cox@linux.org
X-UIDL: b14681451f7ecb0e09c80a21ccacf7f4
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=ELM965067895-10169-0_
Content-Transfer-Encoding: 7bit
Delivered-To: submit@bugs.debian.org
--ELM965067895-10169-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Package: kernel-source-2.2.17
Version: 2.2.17pre6-1
Hi,
the sb_mixer of OSS 3.8s distributed with 2.2.x kernels has a bug in the
handling of the SOUND_MIXER_IMIX (Input Monitor) control of the sb16.
This register controls which input lines are directly connected to the
output lines of the soundcard.
The sb16_mix IMIX register is incorrectly declared as 1-bit, while it is
actually a 5-bits register with the following bit meanings:
0x10 line left
0x08 line_right
0x04 cd left
0x02 cd right
0x01 microphone
For example to listen line and cd inputs I must set the imix to 24+6.
The imix control doesn't work at all with the standard driver, while with
a patched kernel I can enable/disable the input monitor for any individual
input channel.
My soundcard is a Creative SoundBlaster ViBRA16C, pnpdump says:
# Card 1: (serial identifier e5 ff ff ff ff 70 00 8c 0e)
# Vendor Id CTL0070, No Serial Number (-1), checksum 0xE5.
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative ViBRA16C PnP<--
I understant that this is an old card and probably not widely used but it is
very annoying having to recompile every new version of the kernel only for
being able to control the mixer.
The patch in the attachment fixes the bug. Please apply it.
--
Massimo Dal Zotto
+----------------------------------------------------------------------+
| Massimo Dal Zotto email: dz@cs.unitn.it |
| Via Marconi, 141 phone: ++39-0461534251 |
| 38057 Pergine Valsugana (TN) www: http://www.cs.unitn.it/~dz/ |
| Italy pgp: finger dz@tango.cs.unitn.it |
+----------------------------------------------------------------------+
--ELM965067895-10169-0_
Content-Type: text/plain
Content-Disposition: inline; filename="/tmp/sb_mixer.patch"
Content-Transfer-Encoding: quoted-printable
--- drivers/sound/sb_mixer.c.orig Mon Aug 9 21:04:40 1999
+++ drivers/sound/sb_mixer.c Mon Jul 31 13:41:39 2000
@@ -109,7 +109,7 @@
MIX_ENT(SOUND_MIXER_LINE, 0x38, 7, 5, 0x39, 7, 5),
MIX_ENT(SOUND_MIXER_MIC, 0x3a, 7, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_CD, 0x36, 7, 5, 0x37, 7, 5),
-MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 0, 1, 0x00, 0, 0),
+MIX_ENT(SOUND_MIXER_IMIX, 0x3c, 4, 5, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
MIX_ENT(SOUND_MIXER_RECLEV, 0x3f, 7, 2, 0x40, 7, 2), /* Obsolete. Use IGAI=
N */
MIX_ENT(SOUND_MIXER_IGAIN, 0x3f, 7, 2, 0x40, 7, 2),
@@ -597,6 +597,13 @@
=20
case SOUND_MIXER_OUTSRC:
ret =3D set_outmask(devc, val);
+ break;
+
+ case SOUND_MIXER_IMIX:
+ val =3D *(int *) arg;
+ devc->levels[SOUND_MIXER_IMIX] =3D val & 0x1f;
+ sb_setmixer (devc, 0x3c, val);
+ return val;
break;
=20
default:
--ELM965067895-10169-0_
--ELM965067895-10169-0_--
--PEIAKu/WMn1b1Hv9--
Bug reassigned from package `kernel-source-2.2.17' to `kernel'.
Request was from Herbert Xu <herbert@gondor.apana.org.au>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 28 Apr 2001 06:36:57 +0000
From herbert@gondor.apana.org.au Sat Apr 28 01:36:57 2001
Return-path:
Received: from eriador.apana.org.au [203.14.152.116] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 14tOLh-0003ts-00; Sat, 28 Apr 2001 01:36:57 -0500
Received: from gondolin.me.apana.org.au ([192.168.0.6] ident=mail)
by eriador.apana.org.au with esmtp (Exim 3.12 #1 (Debian))
id 14tOLZ-0007ol-00
for ; Sat, 28 Apr 2001 16:36:49 +1000
Received: from herbert by gondolin.me.apana.org.au with local (Exim 3.22 #1 (Debian))
id 14tOLX-00065a-00
for ; Sat, 28 Apr 2001 16:36:47 +1000
To: control@bugs.debian.org
Message-Id:
From: Herbert Xu
Date: Sat, 28 Apr 2001 16:36:47 +1000
Delivered-To: control@bugs.debian.org
reassign 68031 kernel
Tags added: upstream
Request was from Herbert Xu <herbert@gondor.apana.org.au>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 19 Oct 2002 09:53:05 +0000
From herbert@gondor.apana.org.au Sat Oct 19 04:53:04 2002
Return-path:
Received: from eriador.apana.org.au [203.14.152.116] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 182qHw-0004v6-00; Sat, 19 Oct 2002 04:53:04 -0500
Received: from gondolin.me.apana.org.au ([192.168.0.6] ident=mail)
by eriador.apana.org.au with esmtp (Exim 3.35 #1 (Debian))
id 182qHs-0006tK-00
for ; Sat, 19 Oct 2002 19:52:52 +1000
Received: from herbert by gondolin.me.apana.org.au with local (Exim 3.36 #1 (Debian))
id 182qHs-0003cs-00
for ; Sat, 19 Oct 2002 19:52:52 +1000
To: control@bugs.debian.org
Subject: b
Message-Id:
From: Herbert Xu
Date: Sat, 19 Oct 2002 19:52:52 +1000
Delivered-To: control@bugs.debian.org
X-Spam-Status: No, hits=0.6 required=5.0
tests=SPAM_PHRASE_00_01
version=2.41
X-Spam-Level:
notforwarded 27208
tags 6118 upstream
tags 8771 upstream
tags 68031 upstream
tags 11922 upstream
tags 15618 upstream
tags 20115 upstream
tags 24924 upstream
tags 39595 upstream
tags 43640 upstream
tags 52344 upstream
tags 76839 upstream
tags 87745 upstream
tags 125838 upstream
forwarded 119971 linux-kernel@vger.kernel.org
tags 42880 moreinfo
forwarded 155875 linux-kernel@vger.kernel.org
tags 102972 upstream
forwarded 102972 linux-msdos@vger.kernel.org
Information forwarded to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#68031; Package kernel.
debian-bugs-dist@lists.debian.orgDebian Kernel Team
X-Loop: owner@bugs.debian.org
Subject: Bug#68031: oss driver doen't handle ViBRA16C IMIX control
Reply-To: maximilian attems , 68031@bugs.debian.org
Resent-From: maximilian attems
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Debian Kernel Team
Resent-Date: Wed, 28 Nov 2007 00:48:01 +0000
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 68031
X-Debian-PR-Package: kernel
X-Debian-PR-Keywords: upstream
Received: via spool by 68031-submit@bugs.debian.org id=B68031.119621074316273
(code B ref 68031); Wed, 28 Nov 2007 00:48:01 +0000
Received: (at 68031) by bugs.debian.org; 28 Nov 2007 00:45:43 +0000
X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02
(2006-07-26) on rietz.debian.org
X-Spam-Level:
X-Spam-Status: No, score=-3.9 required=4.0 tests=BAYES_00,FOURLA autolearn=no
version=3.1.4-bugs.debian.org_2005_01_02
Received: from baikonur.stro.at ([213.239.196.228])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1IxB3f-0004DH-2s
for 68031@bugs.debian.org; Wed, 28 Nov 2007 00:45:43 +0000
Received: by baikonur.stro.at (Postfix, from userid 1001)
id 5819E5C001; Wed, 28 Nov 2007 01:45:17 +0100 (CET)
Date: Wed, 28 Nov 2007 01:45:17 +0100
From: maximilian attems
To: 68031@bugs.debian.org
Cc: Massimo Dal Zotto
Message-ID: <20071128004517.GB14432@baikonur.stro.at>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by Amavis (ClamAV) at stro.at
hmmm
- bug report against ancient kernel 2.2.17
(ooh even those stable days seem painful;)
- presumably fixed in alsa sb mixer
do you still have that box?
if you can still reproduce in current Debian please holler loudly,
thanks.
--
maks
Acknowledgement sent to maximilian attems <max@stro.at>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
-t
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
X-Mailer: MIME-tools 5.420 (Entity 5.420)
Content-Type: text/plain; charset=utf-8
X-Loop: owner@bugs.debian.org
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: maximilian attems
Subject: Bug#68031: Info received (oss driver doen't handle ViBRA16C IMIX
control)
Message-ID:
References: <20071128004517.GB14432@baikonur.stro.at>
<200007311824.UAA10427@nikita.dz.net>
X-Debian-PR-Message: ack-info 68031
X-Debian-PR-Package: kernel
X-Debian-PR-Keywords: upstream
Reply-To: 68031@bugs.debian.org
Thank you for the additional information you have supplied regarding
this problem report. It has been forwarded to the package maintainer(s)
and to other interested parties to accompany the original report.
Your message has been sent to the package maintainer(s):
Debian Kernel Team
If you wish to continue to submit further information on this problem,
please send it to 68031@bugs.debian.org, as before.
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Debian bug tracking system administrator
(administrator, Debian Bugs database)
Received: (at 68031) by bugs.debian.org; 28 Nov 2007 00:45:43 +0000
From max@baikonur.stro.at Wed Nov 28 00:45:43 2007
X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02
(2006-07-26) on rietz.debian.org
X-Spam-Level:
X-Spam-Status: No, score=-3.9 required=4.0 tests=BAYES_00,FOURLA autolearn=no
version=3.1.4-bugs.debian.org_2005_01_02
Return-path:
Received: from baikonur.stro.at ([213.239.196.228])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1IxB3f-0004DH-2s
for 68031@bugs.debian.org; Wed, 28 Nov 2007 00:45:43 +0000
Received: by baikonur.stro.at (Postfix, from userid 1001)
id 5819E5C001; Wed, 28 Nov 2007 01:45:17 +0100 (CET)
Date: Wed, 28 Nov 2007 01:45:17 +0100
From: maximilian attems
To: 68031@bugs.debian.org
Cc: Massimo Dal Zotto
Subject: oss driver doen't handle ViBRA16C IMIX control
Message-ID: <20071128004517.GB14432@baikonur.stro.at>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by Amavis (ClamAV) at stro.at
hmmm
- bug report against ancient kernel 2.2.17
(ooh even those stable days seem painful;)
- presumably fixed in alsa sb mixer
do you still have that box?
if you can still reproduce in current Debian please holler loudly,
thanks.
--
maks
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#68031; Package kernel.
debian-bugs-dist@lists.debian.orgDebian Kernel Team
X-Loop: owner@bugs.debian.org
Subject: Bug#68031: oss driver doen't handle ViBRA16C IMIX control
Reply-To: Moritz Muehlenhoff , 68031@bugs.debian.org
Resent-From: Moritz Muehlenhoff
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Debian Kernel Team
Resent-Date: Thu, 25 Dec 2008 15:48:04 +0000
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: followup 68031
X-Debian-PR-Package: kernel
X-Debian-PR-Keywords: upstream
Received: via spool by 68031-submit@bugs.debian.org id=B68031.12302200221213
(code B ref 68031); Thu, 25 Dec 2008 15:48:04 +0000
Received: (at 68031) by bugs.debian.org; 25 Dec 2008 15:47:02 +0000
X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02
(2007-08-08) on rietz.debian.org
X-Spam-Level:
X-Spam-Bayes: score:0.0000 Tokens: new, 23; hammy, 97; neutral, 35; spammy, 2.
spammytokens:0.997-1--massimo, 0.995-1--2217
hammytokens:0.000-+--H*r:sk:RSA_AES, 0.000-+--H*r:TLS-1.0, 0.000-+--reassign,
0.000-+--H*Ad:U*jmm, 0.000-+--H*Ad:D*inutil.org
X-Spam-Status: No, score=-5.3 required=4.0 tests=AWL,BAYES_00,FOURLA,
VALID_BTS_CONTROL autolearn=unavailable
version=3.2.3-bugs.debian.org_2005_01_02
Received: from inutil.org ([83.151.30.8])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1LFsQP-0000IE-Qw; Thu, 25 Dec 2008 15:47:02 +0000
Received: from dslb-082-083-247-170.pools.arcor-ip.net ([82.83.247.170] helo=localhost.localdomain)
by inutil.org with esmtpsa (TLS-1.0:RSA_AES_256_CBC_SHA1:32)
(Exim 4.63)
(envelope-from )
id 1LFsQM-0001je-EM; Thu, 25 Dec 2008 16:46:58 +0100
Received: from jmm by localhost.localdomain with local (Exim 4.69)
(envelope-from )
id 1LFsQF-00026h-UQ; Thu, 25 Dec 2008 16:46:51 +0100
Date: Thu, 25 Dec 2008 16:46:51 +0100
To: Massimo Dal Zotto
Cc: 68031@bugs.debian.org, jmm@debian.org, control@bugs.debian.org
Message-ID: <20081225154651.GA8091@galadriel.inutil.org>
References: <20071128004517.GB14432@baikonur.stro.at>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20071128004517.GB14432@baikonur.stro.at>
User-Agent: Mutt/1.5.18 (2008-05-17)
From: Moritz Muehlenhoff
X-SA-Exim-Connect-IP: 82.83.247.170
X-SA-Exim-Mail-From: jmm@inutil.org
X-SA-Exim-Scanned: No (on inutil.org); SAEximRunCond expanded to false
reassign 68031 linux-2.6
thanks
On Wed, Nov 28, 2007 at 01:45:17AM +0100, maximilian attems wrote:
> hmmm
> - bug report against ancient kernel 2.2.17
> (ooh even those stable days seem painful;)
>
> - presumably fixed in alsa sb mixer
>
> do you still have that box?
> if you can still reproduce in current Debian please holler loudly,
> thanks.
Massimo, does this error still occur with more recent kernel versions?
Cheers,
Moritz
Acknowledgement sent
to Moritz Muehlenhoff <jmm@inutil.org>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
-t
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
X-Mailer: MIME-tools 5.420 (Entity 5.420)
Content-Type: text/plain; charset=utf-8
X-Loop: owner@bugs.debian.org
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Moritz Muehlenhoff
Subject: Bug#68031: Info received (oss driver doen't handle ViBRA16C IMIX
control)
Message-ID:
References: <20081225154651.GA8091@galadriel.inutil.org>
X-Debian-PR-Message: ack-info 68031
X-Debian-PR-Package: kernel
X-Debian-PR-Keywords: upstream
Reply-To: 68031@bugs.debian.org
Date: Thu, 25 Dec 2008 15:48:05 +0000
Thank you for the additional information you have supplied regarding
this Bug report.
This is an automatically generated reply to let you know your message
has been received.
Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.
Your message has been sent to the package maintainer(s):
Debian Kernel Team
If you wish to submit further information on this problem, please
send it to 68031@bugs.debian.org, as before.
Please do not send mail to owner@bugs.debian.org unless you wish
to report a problem with the Bug-tracking system.
--=20
68031: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D68031
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
Received: (at 68031) by bugs.debian.org; 25 Dec 2008 15:47:02 +0000
From jmm@inutil.org Thu Dec 25 15:47:02 2008
X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02
(2007-08-08) on rietz.debian.org
X-Spam-Level:
X-Spam-Bayes: score:0.0000 Tokens: new, 23; hammy, 97; neutral, 35; spammy, 2.
spammytokens:0.997-1--massimo, 0.995-1--2217
hammytokens:0.000-+--H*r:sk:RSA_AES, 0.000-+--H*r:TLS-1.0, 0.000-+--reassign,
0.000-+--H*Ad:U*jmm, 0.000-+--H*Ad:D*inutil.org
X-Spam-Status: No, score=-5.3 required=4.0 tests=AWL,BAYES_00,FOURLA,
VALID_BTS_CONTROL autolearn=unavailable
version=3.2.3-bugs.debian.org_2005_01_02
Return-path:
Received: from inutil.org ([83.151.30.8])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1LFsQP-0000IE-Qw; Thu, 25 Dec 2008 15:47:02 +0000
Received: from dslb-082-083-247-170.pools.arcor-ip.net ([82.83.247.170] helo=localhost.localdomain)
by inutil.org with esmtpsa (TLS-1.0:RSA_AES_256_CBC_SHA1:32)
(Exim 4.63)
(envelope-from )
id 1LFsQM-0001je-EM; Thu, 25 Dec 2008 16:46:58 +0100
Received: from jmm by localhost.localdomain with local (Exim 4.69)
(envelope-from )
id 1LFsQF-00026h-UQ; Thu, 25 Dec 2008 16:46:51 +0100
Date: Thu, 25 Dec 2008 16:46:51 +0100
To: Massimo Dal Zotto
Cc: 68031@bugs.debian.org, jmm@debian.org, control@bugs.debian.org
Subject: Re: oss driver doen't handle ViBRA16C IMIX control
Message-ID: <20081225154651.GA8091@galadriel.inutil.org>
References: <20071128004517.GB14432@baikonur.stro.at>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20071128004517.GB14432@baikonur.stro.at>
User-Agent: Mutt/1.5.18 (2008-05-17)
From: Moritz Muehlenhoff
X-SA-Exim-Connect-IP: 82.83.247.170
X-SA-Exim-Mail-From: jmm@inutil.org
X-SA-Exim-Scanned: No (on inutil.org); SAEximRunCond expanded to false
reassign 68031 linux-2.6
thanks
On Wed, Nov 28, 2007 at 01:45:17AM +0100, maximilian attems wrote:
> hmmm
> - bug report against ancient kernel 2.2.17
> (ooh even those stable days seem painful;)
>
> - presumably fixed in alsa sb mixer
>
> do you still have that box?
> if you can still reproduce in current Debian please holler loudly,
> thanks.
Massimo, does this error still occur with more recent kernel versions?
Cheers,
Moritz
Bug reassigned from package `kernel' to `linux-2.6'.
Request was from Moritz Muehlenhoff <jmm@inutil.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 25 Dec 2008 15:47:02 +0000
From jmm@inutil.org Thu Dec 25 15:47:02 2008
X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02
(2007-08-08) on rietz.debian.org
X-Spam-Level:
X-Spam-Bayes: score:0.0000 Tokens: new, 23; hammy, 97; neutral, 35; spammy, 2.
spammytokens:0.997-1--massimo, 0.995-1--2217
hammytokens:0.000-+--H*r:sk:RSA_AES, 0.000-+--H*r:TLS-1.0, 0.000-+--reassign,
0.000-+--H*Ad:U*jmm, 0.000-+--H*Ad:D*inutil.org
X-Spam-Status: No, score=-5.3 required=4.0 tests=AWL,BAYES_00,FOURLA,
VALID_BTS_CONTROL autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02
Return-path:
Received: from inutil.org ([83.151.30.8])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1LFsQP-0000IE-Qw; Thu, 25 Dec 2008 15:47:02 +0000
Received: from dslb-082-083-247-170.pools.arcor-ip.net ([82.83.247.170] helo=localhost.localdomain)
by inutil.org with esmtpsa (TLS-1.0:RSA_AES_256_CBC_SHA1:32)
(Exim 4.63)
(envelope-from )
id 1LFsQM-0001je-EM; Thu, 25 Dec 2008 16:46:58 +0100
Received: from jmm by localhost.localdomain with local (Exim 4.69)
(envelope-from )
id 1LFsQF-00026h-UQ; Thu, 25 Dec 2008 16:46:51 +0100
Date: Thu, 25 Dec 2008 16:46:51 +0100
To: Massimo Dal Zotto
Cc: 68031@bugs.debian.org, jmm@debian.org, control@bugs.debian.org
Subject: Re: oss driver doen't handle ViBRA16C IMIX control
Message-ID: <20081225154651.GA8091@galadriel.inutil.org>
References: <20071128004517.GB14432@baikonur.stro.at>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20071128004517.GB14432@baikonur.stro.at>
User-Agent: Mutt/1.5.18 (2008-05-17)
From: Moritz Muehlenhoff
X-SA-Exim-Connect-IP: 82.83.247.170
X-SA-Exim-Mail-From: jmm@inutil.org
X-SA-Exim-Scanned: No (on inutil.org); SAEximRunCond expanded to false
Delivered-To: control@bugs.debian.org
reassign 68031 linux-2.6
thanks
On Wed, Nov 28, 2007 at 01:45:17AM +0100, maximilian attems wrote:
> hmmm
> - bug report against ancient kernel 2.2.17
> (ooh even those stable days seem painful;)
>
> - presumably fixed in alsa sb mixer
>
> do you still have that box?
> if you can still reproduce in current Debian please holler loudly,
> thanks.
Massimo, does this error still occur with more recent kernel versions?
Cheers,
Moritz
Received: (at 68031-forwarded) by bugs.debian.org; 29 Dec 2008 22:14:14 +0000
From h.gielsdorfe@terra.cl Mon Dec 29 22:14:14 2008
X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02
(2007-08-08) on rietz.debian.org
X-Spam-Level: ***
X-Spam-Bayes: score:0.7492 Tokens: new, 37; hammy, 10; neutral, 40; spammy,
26. spammytokens:1.000-+--HTo:U*68031-forwarded, 1.000-+--H*r:68031-forwarded,
1.000-+--H*r:sk:68031-f, 1.000-8--H*Ad:U*68031-forwarded,
1.000-2--H*F:D*terra.cl hammytokens:0.016-6--fter, 0.031-+--H*u:5.0,
0.038-+--H*u:Gecko, 0.040-+--H*UA:Gecko, 0.044-+--H*u:en-US
X-Spam-Status: No, score=3.0 required=4.0 tests=BAYES_60,RCVD_IN_PBL,
RDNS_DYNAMIC autolearn=no version=3.2.3-bugs.debian.org_2005_01_02
Return-path:
Received: from 14-41-21-190.adsl.terra.cl ([190.21.41.14] helo=terra.cl)
by rietz.debian.org with smtp (Exim 4.63)
(envelope-from )
id 1LHQNJ-0005OC-I5
for 68031-forwarded@bugs.debian.org; Mon, 29 Dec 2008 22:14:14 +0000
Message-ID: <1387BEF6.0B185C26@terra.cl>
Date: Mon, 29 Dec 2008 18:10:16 -0500
From: "Aigneis"
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130
X-Accept-Language: en-us
MIME-Version: 1.0
To: "Aigneis" <68031-forwarded@bugs.debian.org>
Subject: Besser im Bett
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 8bit
Härter, länger, öfter. Das willst du doch auch, oder?
Probier´s mit der blauen Pille!
www.maennerglueck.com