* 2.6.19-rc1 regression: airo suspend fails
[not found] ` <871wpmoyjv.fsf@sycorax.lbl.gov>
@ 2006-10-06 18:47 ` Adrian Bunk
2006-10-07 3:54 ` Alex Romosan
2006-10-07 19:52 ` Dave Kleikamp
0 siblings, 2 replies; 19+ messages in thread
From: Adrian Bunk @ 2006-10-06 18:47 UTC (permalink / raw)
To: Alex Romosan; +Cc: linux-kernel, linville, netdev, pavel, linux-pm
On Thu, Oct 05, 2006 at 09:31:16PM -0700, Alex Romosan wrote:
> Linus Torvalds <torvalds@osdl.org> writes:
>
> > so please give it a good testing, and let's see if there are any
> > regressions.
>
> it breaks suspend when the airo module is loaded:
>
> kernel: Stopping tasks: =================================================================================
> kernel: stopping tasks timed out after 20 seconds (1 tasks remaining):
> kernel: eth1
> kernel: Restarting tasks...<6> Strange, eth1 not stopped
>
> if i remove the airo module suspend works normally (this is on a
> thinkpad t40).
Thanks for your report.
Let's try to figure out what broke it.
As a first step, please replace drivers/net/wireless/airo.c with the
version in 2.6.18 and check whether this fixes the issue (you can ignore
the deprecated warning during compilation).
> --alex--
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1 regression: airo suspend fails
2006-10-06 18:47 ` 2.6.19-rc1 regression: airo suspend fails Adrian Bunk
@ 2006-10-07 3:54 ` Alex Romosan
2006-10-07 19:52 ` Dave Kleikamp
1 sibling, 0 replies; 19+ messages in thread
From: Alex Romosan @ 2006-10-07 3:54 UTC (permalink / raw)
To: Adrian Bunk; +Cc: netdev, linux-pm, linux-kernel
Adrian Bunk <bunk@stusta.de> writes:
> On Thu, Oct 05, 2006 at 09:31:16PM -0700, Alex Romosan wrote:
>> Linus Torvalds <torvalds@osdl.org> writes:
>>
>> > so please give it a good testing, and let's see if there are any
>> > regressions.
>>
>> it breaks suspend when the airo module is loaded:
>>
>> kernel: Stopping tasks: =================================================================================
>> kernel: stopping tasks timed out after 20 seconds (1 tasks remaining):
>> kernel: eth1
>> kernel: Restarting tasks...<6> Strange, eth1 not stopped
>>
>> if i remove the airo module suspend works normally (this is on a
>> thinkpad t40).
>
> Thanks for your report.
>
> Let's try to figure out what broke it.
>
> As a first step, please replace drivers/net/wireless/airo.c with the
> version in 2.6.18 and check whether this fixes the issue (you can ignore
> the deprecated warning during compilation).
i replaced airo.c with the 2.6.18 version. the good news is i can
suspend to memory with it. the bad news is dhcp never got an ip
address (so i don't think the 2.6.18 driver really works with the
2.6.19-rc1 infrastructure). any patches i could try? thanks.
--alex--
--
| I believe the moment is at hand when, by a paranoiac and active |
| advance of the mind, it will be possible (simultaneously with |
| automatism and other passive states) to systematize confusion |
| and thus to help to discredit completely the world of reality. |
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1 regression: airo suspend fails
2006-10-06 18:47 ` 2.6.19-rc1 regression: airo suspend fails Adrian Bunk
2006-10-07 3:54 ` Alex Romosan
@ 2006-10-07 19:52 ` Dave Kleikamp
2006-10-07 20:17 ` Alex Romosan
2006-10-08 6:43 ` Pavel Machek
1 sibling, 2 replies; 19+ messages in thread
From: Dave Kleikamp @ 2006-10-07 19:52 UTC (permalink / raw)
To: Adrian Bunk; +Cc: Alex Romosan, linux-kernel, linville, netdev, pavel, linux-pm
On Fri, 2006-10-06 at 20:47 +0200, Adrian Bunk wrote:
> On Thu, Oct 05, 2006 at 09:31:16PM -0700, Alex Romosan wrote:
> > it breaks suspend when the airo module is loaded:
> >
> > kernel: Stopping tasks: =================================================================================
> > kernel: stopping tasks timed out after 20 seconds (1 tasks remaining):
> > kernel: eth1
> > kernel: Restarting tasks...<6> Strange, eth1 not stopped
> >
> > if i remove the airo module suspend works normally (this is on a
> > thinkpad t40).
>
> Thanks for your report.
>
> Let's try to figure out what broke it.
I believe it was broken by:
http://www.kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5
I have seen this in the -mm tree, but didn't follow up at the time. I
was able to fix it with the following patch. I don't know if it's the
best fix, but it seems to follow the same logic as the original code.
The airo driver used to break out of while loop if there were any signals
pending. Since it no longer checks for signals, it at least needs to check
if it needs to be frozen.
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
diff -Nurp linux-2.6.19-rc1/drivers/net/wireless/airo.c linux/drivers/net/wireless/airo.c
--- linux-2.6.19-rc1/drivers/net/wireless/airo.c 2006-10-05 07:22:39.000000000 -0500
+++ linux/drivers/net/wireless/airo.c 2006-10-07 13:42:13.000000000 -0500
@@ -3090,7 +3090,8 @@ static int airo_thread(void *data) {
set_bit(JOB_AUTOWEP, &ai->jobs);
break;
}
- if (!kthread_should_stop()) {
+ if (!kthread_should_stop() &&
+ !freezing(current)) {
unsigned long wake_at;
if (!ai->expires || !ai->scan_timeout) {
wake_at = max(ai->expires,
@@ -3102,7 +3103,8 @@ static int airo_thread(void *data) {
schedule_timeout(wake_at - jiffies);
continue;
}
- } else if (!kthread_should_stop()) {
+ } else if (!kthread_should_stop() &&
+ !freezing(current)) {
schedule();
continue;
}
--
David Kleikamp
IBM Linux Technology Center
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1 regression: airo suspend fails
2006-10-07 19:52 ` Dave Kleikamp
@ 2006-10-07 20:17 ` Alex Romosan
2006-10-08 6:43 ` Pavel Machek
1 sibling, 0 replies; 19+ messages in thread
From: Alex Romosan @ 2006-10-07 20:17 UTC (permalink / raw)
To: Dave Kleikamp; +Cc: linux-pm, netdev, Adrian Bunk, linux-kernel
Dave Kleikamp <shaggy@austin.ibm.com> writes:
> I believe it was broken by:
> http://www.kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5
>
> I have seen this in the -mm tree, but didn't follow up at the time. I
> was able to fix it with the following patch. I don't know if it's the
> best fix, but it seems to follow the same logic as the original code.
>
>
> The airo driver used to break out of while loop if there were any signals
> pending. Since it no longer checks for signals, it at least needs to check
> if it needs to be frozen.
>
> Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
>
> diff -Nurp linux-2.6.19-rc1/drivers/net/wireless/airo.c linux/drivers/net/wireless/airo.c
> --- linux-2.6.19-rc1/drivers/net/wireless/airo.c 2006-10-05 07:22:39.000000000 -0500
> +++ linux/drivers/net/wireless/airo.c 2006-10-07 13:42:13.000000000 -0500
> @@ -3090,7 +3090,8 @@ static int airo_thread(void *data) {
> set_bit(JOB_AUTOWEP, &ai->jobs);
> break;
> }
> - if (!kthread_should_stop()) {
> + if (!kthread_should_stop() &&
> + !freezing(current)) {
> unsigned long wake_at;
> if (!ai->expires || !ai->scan_timeout) {
> wake_at = max(ai->expires,
> @@ -3102,7 +3103,8 @@ static int airo_thread(void *data) {
> schedule_timeout(wake_at - jiffies);
> continue;
> }
> - } else if (!kthread_should_stop()) {
> + } else if (!kthread_should_stop() &&
> + !freezing(current)) {
> schedule();
> continue;
> }
>
thanks. with this patch applied i can suspend to ram with the airo
module loaded.
--alex--
--
| I believe the moment is at hand when, by a paranoiac and active |
| advance of the mind, it will be possible (simultaneously with |
| automatism and other passive states) to systematize confusion |
| and thus to help to discredit completely the world of reality. |
^ permalink raw reply [flat|nested] 19+ messages in thread
* 2.6.19-rc1: known regressions (v2)
[not found] <Pine.LNX.4.64.0610042017340.3952@g5.osdl.org>
[not found] ` <871wpmoyjv.fsf@sycorax.lbl.gov>
@ 2006-10-07 21:46 ` Adrian Bunk
2006-10-08 7:12 ` x60 backlight Re: [discuss] " Pavel Machek
2006-10-08 8:56 ` matthieu castet
2006-10-10 5:10 ` 2.6.19-rc1: known regressions (v3) Adrian Bunk
2 siblings, 2 replies; 19+ messages in thread
From: Adrian Bunk @ 2006-10-07 21:46 UTC (permalink / raw)
To: Linus Torvalds
Cc: len.brown, alsa-devel, Thierry Vignaud, linux-pm, Alex Romosan,
Torsten Kaiser, Olaf Hering, ak, linux-ide, fastboot, Vivek Goyal,
Dave Kleikamp, Pavel Machek, Sukadev Bhattiprolu, Antonino Daplas,
linux1394-devel, perex, Alistair John Strachan, discuss,
linux-fbdev-devel, linux-usb-devel, Trond Myklebust, linuxppc-dev,
Steve Fox, netdev, Magnus Damm
This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
that are not yet fixed Linus' tree.
If you find your name in the Cc header, you are either submitter of one
of the bugs, maintainer of an affectected subsystem or driver, a patch
of you was declared guilty for a breakage or I'm considering you in any
other way possibly involved with one or more of these issues.
Due to the huge amount of recipients, please trim the Cc when answering.
Subject : SMP x86_64 boot problem
References : http://lkml.org/lkml/2006/9/28/330
http://lkml.org/lkml/2006/10/5/289
Submitter : art@usfltd.com
Status : submitter was asked to git bisect
result of bisecting seems to be wrong
Subject : snd-hda-intel <-> forcedeth MSI problem
References : http://lkml.org/lkml/2006/10/5/40
Submitter : Prakash Punnoor <prakash@punnoor.de>
Status : unknown
Subject : oops in xfrm_register_mode
References : http://lkml.org/lkml/2006/10/4/170
Submitter : Steve Fox <drfickle@us.ibm.com>
Status : unknown
Subject : T60 stops triggering any ACPI events
References : http://lkml.org/lkml/2006/10/4/425
Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
Status : unknown
Subject : thinkpad x60: brightness no longer adjustable in 2.6.18-git
References : http://lkml.org/lkml/2006/10/2/300
Submitter : Pavel Machek <pavel@ucw.cz>
Status : unknown, related to the issue above?
Subject : monitor not active after boot
References : http://lkml.org/lkml/2006/10/5/338
Submitter : Olaf Hering <olaf@aepfle.de>
Guilty : Antonino Daplas <adaplas@pol.net>
commit 346bc21026e7a92e1d7a4a1b3792c5e8b686133d
Status : unknown
Subject : sata-via doesn't detect anymore disks attached to VIA vt6421
References : http://bugzilla.kernel.org/show_bug.cgi?id=7255
Submitter : Thierry Vignaud <tvignaud@mandriva.com>
Status : unknown
Subject : ueagle-atm Oops
References : http://lkml.org/lkml/2006/10/6/390
Submitter : Ernst Herzberg <list-lkml@net4u.de>
Handled-By : Matthieu Castet <castet.matthieu@free.fr>
Status : unknown
Subject : DVD drive lost DVD capabilities
References : http://lkml.org/lkml/2006/10/1/45
Submitter : Olaf Hering <olaf@aepfle.de>
Guilty : Jens Axboe <axboe@oracle.com>
commit 4aff5e2333c9a1609662f2091f55c3f6fffdad36
Handled-By : Jens Axboe <axboe@oracle.com>
Status : Jens is working on a fix
Subject : sleep/wakeup on powerbooks apparently busted
References : http://lkml.org/lkml/2006/10/5/13
Submitter : Benjamin Herrenschmidt <benh@kernel.crashing.org>
Handled-By : Benjamin Herrenschmidt <benh@kernel.crashing.org>
Status : Benjamin will investigate
Subject : doesn't boot on iBook G4
References : http://lkml.org/lkml/2006/10/5/305
Submitter : Andreas Schwab <schwab@suse.de>
Handled-By : Mel Gorman <mel@skynet.ie>
Patch : http://lkml.org/lkml/2006/10/6/80
Status : patch available
Subject : airo suspend fails
References : http://lkml.org/lkml/2006/10/6/3
Submitter : Alex Romosan <romosan@sycorax.lbl.gov>
Guilty : Sukadev Bhattiprolu <sukadev@us.ibm.com> (?)
commit 3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5 (?)
Handled-By : Dave Kleikamp <shaggy@austin.ibm.com>
Patch : http://lkml.org/lkml/2006/10/7/139
Status : patch available
Subject : NFSv4 fails to mount (timeout)
References : http://bugzilla.kernel.org/show_bug.cgi?id=7274
Submitter : Torsten Kaiser <kernel@bardioc.dyndns.org>
Guilty : Trond Myklebust <Trond.Myklebust@netapp.com>
commit 51b6ded4d9a94a61035deba1d8f51a54e3a3dd86
Handled-By : Trond Myklebust <Trond.Myklebust@netapp.com>
Patch : http://bugzilla.kernel.org/show_bug.cgi?id=7274
Status : patch available
Subject : kexec broken on x86_64
References : http://lkml.org/lkml/2006/10/5/86
Submitter : Magnus Damm <magnus.damm@gmail.com>
Handled-By : Vivek Goyal <vgoyal@in.ibm.com>
Patch : http://lkml.org/lkml/2006/10/5/199
Status : patch available
Subject : strange ieee1394 messages
References : http://lkml.org/lkml/2006/10/5/154
Submitter : "Alistair John Strachan" <s0348365@sms.ed.ac.uk>
Guilty : Stefan Richter <stefanr@s5r6.in-berlin.de>
commit d2f119fe319528da8c76a1107459d6f478cbf28c
Handled-By : Stefan Richter <stefanr@s5r6.in-berlin.de>
Patch : http://lkml.org/lkml/2006/10/6/235
Status : harmless, patch available
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1: known regressions (v2)
@ 2006-10-08 4:43 Trond Myklebust
0 siblings, 0 replies; 19+ messages in thread
From: Trond Myklebust @ 2006-10-08 4:43 UTC (permalink / raw)
To: Adrian Bunk
Cc: Linus Torvalds <torvalds@osdl.org>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, art@usfltd.com, ak@suse.de, discuss@x86-64.org, Prakash Punnoor <prakash@punnoor.de>, perex@suse.cz, alsa-devel@alsa-project.org, Steve Fox <drfickle@us.ibm.com>, netdev@vger.kernel.org, "Michael S. Tsirkin" <mst@mellanox.co.il>, len.brown@intel.com, linux-acpi@vger.kernel.org, Pavel Machek <pavel@ucw.cz>, Olaf Hering <olaf@aepfle.de>, Antonino Daplas <adaplas@pol.net>, linux-fbdev-devel@lists.sourceforge.net, Thierry Vignaud <tvignaud@mandriva.com>, jgarzik@pobox.com, linux-ide@vger.kernel.org, Ernst Herzberg <list-lkml@net4u.de>, Matthieu Castet <castet.matthieu@free.fr>, linux-usb-devel@lists.sourceforge.net, Jens Axboe <axboe@oracle.com>, Benjamin Herrenschmidt <benh@kernel.crashing.org>, linux-pm@osdl.org, linuxppc-dev@ozlabs.org, Andreas Schwab <schwab@suse.de>, Mel Gorman <mel@skynet.ie>, Alex Romosan <romosan@sycorax.lbl.gov>, Sukadev Bhattiprolu <sukadev@us.ibm.!
com>, Dave Kleikamp <shaggy@austin.ibm.com>, Torsten Kaiser <kernel@bardioc.dyndns.org>, Magnus Damm <magnus.damm@gmail.com>, Vivek Goyal <vgoyal@in.ibm.com>, ebiederm@xmission.com, fastboot@osdl.org, Alistair John Strachan <s0348365@sms.ed.ac.uk>, Stefan Richter <stefanr@s5r6.in-berlin.de>, linux1394-devel@lists.sourceforge.net
In-Reply-To: <20061007214620.GB8810@stusta.de>
References: <Pine.LNX.4.64.0610042017340.3952@g5.osdl.org>
<20061007214620.GB8810@stusta.de>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Organization: Network Appliance Inc
Date: Sun, 08 Oct 2006 00:43:35 -0400
Message-Id: <1160282615.5506.9.camel@lade.trondhjem.org>
Mime-Version: 1.0
X-Mailer: Evolution 2.8.1
On Sat, 2006-10-07 at 23:46 +0200, Adrian Bunk wrote:
> Subject : NFSv4 fails to mount (timeout)
> References : http://bugzilla.kernel.org/show_bug.cgi?id=7274
> Submitter : Torsten Kaiser <kernel@bardioc.dyndns.org>
> Guilty : Trond Myklebust <Trond.Myklebust@netapp.com>
> commit 51b6ded4d9a94a61035deba1d8f51a54e3a3dd86
> Handled-By : Trond Myklebust <Trond.Myklebust@netapp.com>
> Patch : http://bugzilla.kernel.org/show_bug.cgi?id=7274
> Status : patch available
Thanks... Always nice to hear that you have been judged and found
guilty. Now go and reread that fucking bug report...
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1 regression: airo suspend fails
2006-10-07 19:52 ` Dave Kleikamp
2006-10-07 20:17 ` Alex Romosan
@ 2006-10-08 6:43 ` Pavel Machek
1 sibling, 0 replies; 19+ messages in thread
From: Pavel Machek @ 2006-10-08 6:43 UTC (permalink / raw)
To: Dave Kleikamp
Cc: Adrian Bunk, Alex Romosan, linux-kernel, linville, netdev,
linux-pm
Hi!
> > > it breaks suspend when the airo module is loaded:
> > >
> > > kernel: Stopping tasks: =================================================================================
> > > kernel: stopping tasks timed out after 20 seconds (1 tasks remaining):
> > > kernel: eth1
> > > kernel: Restarting tasks...<6> Strange, eth1 not stopped
> > >
> > > if i remove the airo module suspend works normally (this is on a
> > > thinkpad t40).
> >
> > Thanks for your report.
> >
> > Let's try to figure out what broke it.
>
> I believe it was broken by:
> http://www.kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5
>
> I have seen this in the -mm tree, but didn't follow up at the time. I
> was able to fix it with the following patch. I don't know if it's the
> best fix, but it seems to follow the same logic as the original code.
>
>
> The airo driver used to break out of while loop if there were any signals
> pending. Since it no longer checks for signals, it at least needs to check
> if it needs to be frozen.
>
> Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
ACK. Please push it to akpm or airo maintainers...
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-07 21:46 ` 2.6.19-rc1: known regressions (v2) Adrian Bunk
@ 2006-10-08 7:12 ` Pavel Machek
2006-10-08 17:38 ` Adrian Bunk
2006-10-08 23:44 ` Jeremy Fitzhardinge
2006-10-08 8:56 ` matthieu castet
1 sibling, 2 replies; 19+ messages in thread
From: Pavel Machek @ 2006-10-08 7:12 UTC (permalink / raw)
To: Adrian Bunk; +Cc: Linux Kernel Mailing List, len.brown, linux-acpi, linux-pm
On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> that are not yet fixed Linus' tree.
>
> If you find your name in the Cc header, you are either submitter of one
> of the bugs, maintainer of an affectected subsystem or driver, a patch
> of you was declared guilty for a breakage or I'm considering you in any
> other way possibly involved with one or more of these issues.
>
> Due to the huge amount of recipients, please trim the Cc when answering.
...
> Subject : T60 stops triggering any ACPI events
> References : http://lkml.org/lkml/2006/10/4/425
> Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> Status : unknown
>
>
> Subject : thinkpad x60: brightness no longer adjustable in 2.6.18-git
> References : http://lkml.org/lkml/2006/10/2/300
> Submitter : Pavel Machek <pavel@ucw.cz>
> Status : unknown, related to the issue above?
Strange, problem went away after reboot. I guess I'll write it off as
an acpi glitch... there's definitely something strange going on with
backlight around s2ram: during normal operation, backlight changes are
fast. After s2ram, backlight change from keyboard takes 300msec or so.
--
Thanks for all the (sleeping) penguins.
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1: known regressions (v2)
2006-10-07 21:46 ` 2.6.19-rc1: known regressions (v2) Adrian Bunk
2006-10-08 7:12 ` x60 backlight Re: [discuss] " Pavel Machek
@ 2006-10-08 8:56 ` matthieu castet
1 sibling, 0 replies; 19+ messages in thread
From: matthieu castet @ 2006-10-08 8:56 UTC (permalink / raw)
To: Adrian Bunk
Cc: len.brown, alsa-devel, Thierry Vignaud, linux-pm,
Benjamin Herrenschmidt, Alex Romosan, Torsten Kaiser, Olaf Hering,
ak, linux-ide, Linus Torvalds, fastboot, Dave Kleikamp,
Pavel Machek, Antonino Daplas, linux1394-devel, perex,
Alistair John Strachan, discuss, linux-fbdev-devel,
linux-usb-devel, Trond Myklebust, linuxppc-dev, Steve Fox, netdev,
Magnus Damm, Linux
Hi,
Adrian Bunk wrote:
> This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> that are not yet fixed Linus' tree.
>
> If you find your name in the Cc header, you are either submitter of one
> of the bugs, maintainer of an affectected subsystem or driver, a patch
> of you was declared guilty for a breakage or I'm considering you in any
> other way possibly involved with one or more of these issues.
>
> Due to the huge amount of recipients, please trim the Cc when answering.
>
>
>
> Subject : ueagle-atm Oops
> References : http://lkml.org/lkml/2006/10/6/390
> Submitter : Ernst Herzberg <list-lkml@net4u.de>
> Handled-By : Matthieu Castet <castet.matthieu@free.fr>
> Status : unknown
>
>
Guilty :
http://www.kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=e7ccdfec087f02930c5cdc81143d4a045ae8d361
Patch available at
https://mail.gna.org/public/ueagleatm-dev/2006-10/msg00022.html , but
some cleaning is need (I wasn't aware of "USB: fix __must_check warnings
in drivers/usb/atm/" patch).
Matthieu
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 7:12 ` x60 backlight Re: [discuss] " Pavel Machek
@ 2006-10-08 17:38 ` Adrian Bunk
2006-10-08 17:59 ` Michael S. Tsirkin
2006-10-08 18:36 ` Pavel Machek
2006-10-08 23:44 ` Jeremy Fitzhardinge
1 sibling, 2 replies; 19+ messages in thread
From: Adrian Bunk @ 2006-10-08 17:38 UTC (permalink / raw)
To: Pavel Machek
Cc: Linux Kernel Mailing List, len.brown, linux-acpi, linux-pm,
Michael S. Tsirkin
On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
>
> On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > that are not yet fixed Linus' tree.
> >
> > If you find your name in the Cc header, you are either submitter of one
> > of the bugs, maintainer of an affectected subsystem or driver, a patch
> > of you was declared guilty for a breakage or I'm considering you in any
> > other way possibly involved with one or more of these issues.
> >
> > Due to the huge amount of recipients, please trim the Cc when answering.
> ...
> > Subject : T60 stops triggering any ACPI events
> > References : http://lkml.org/lkml/2006/10/4/425
> > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > Status : unknown
> >
> >
> > Subject : thinkpad x60: brightness no longer adjustable in 2.6.18-git
> > References : http://lkml.org/lkml/2006/10/2/300
> > Submitter : Pavel Machek <pavel@ucw.cz>
> > Status : unknown, related to the issue above?
>
> Strange, problem went away after reboot. I guess I'll write it off as
> an acpi glitch... there's definitely something strange going on with
> backlight around s2ram: during normal operation, backlight changes are
> fast. After s2ram, backlight change from keyboard takes 300msec or so.
Is this a regression compared to 2.6.18 or an older issue?
If it's a regression can you bisect?
TIA
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 17:38 ` Adrian Bunk
@ 2006-10-08 17:59 ` Michael S. Tsirkin
2006-10-08 19:30 ` Adrian Bunk
2006-10-08 18:36 ` Pavel Machek
1 sibling, 1 reply; 19+ messages in thread
From: Michael S. Tsirkin @ 2006-10-08 17:59 UTC (permalink / raw)
To: Adrian Bunk; +Cc: len.brown, linux-pm, Linux Kernel Mailing List, linux-acpi
Quoting r. Adrian Bunk <bunk@stusta.de>:
> Subject: Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
>
> On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
> >
> > On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > > that are not yet fixed Linus' tree.
> > >
> > ...
> > > Subject : T60 stops triggering any ACPI events
> > > References : http://lkml.org/lkml/2006/10/4/425
> > > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > > Status : unknown
This was on a pre -rc1 git tree.
I've been using -rc1 since it's out and does not happen to me anymore.
So we probably can write this off as a memory corruption
issue that got fixed in between.
--
MST
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 17:38 ` Adrian Bunk
2006-10-08 17:59 ` Michael S. Tsirkin
@ 2006-10-08 18:36 ` Pavel Machek
2006-10-08 19:29 ` Adrian Bunk
1 sibling, 1 reply; 19+ messages in thread
From: Pavel Machek @ 2006-10-08 18:36 UTC (permalink / raw)
To: Adrian Bunk
Cc: Linux Kernel Mailing List, len.brown, linux-acpi, linux-pm,
Michael S. Tsirkin
On Sun 08-10-06 19:38:09, Adrian Bunk wrote:
> On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
> >
> > On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > > that are not yet fixed Linus' tree.
> > >
> > > If you find your name in the Cc header, you are either submitter of one
> > > of the bugs, maintainer of an affectected subsystem or driver, a patch
> > > of you was declared guilty for a breakage or I'm considering you in any
> > > other way possibly involved with one or more of these issues.
> > >
> > > Due to the huge amount of recipients, please trim the Cc when answering.
> > ...
> > > Subject : T60 stops triggering any ACPI events
> > > References : http://lkml.org/lkml/2006/10/4/425
> > > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > > Status : unknown
> > >
> > >
> > > Subject : thinkpad x60: brightness no longer adjustable in 2.6.18-git
> > > References : http://lkml.org/lkml/2006/10/2/300
> > > Submitter : Pavel Machek <pavel@ucw.cz>
> > > Status : unknown, related to the issue above?
> >
> > Strange, problem went away after reboot. I guess I'll write it off as
> > an acpi glitch... there's definitely something strange going on with
> > backlight around s2ram: during normal operation, backlight changes are
> > fast. After s2ram, backlight change from keyboard takes 300msec or so.
>
> Is this a regression compared to 2.6.18 or an older issue?
Slowness is not something I'd classify as serious problem, and
breakage is not reproducible. Ignore it for now.
--
Thanks for all the (sleeping) penguins.
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 18:36 ` Pavel Machek
@ 2006-10-08 19:29 ` Adrian Bunk
0 siblings, 0 replies; 19+ messages in thread
From: Adrian Bunk @ 2006-10-08 19:29 UTC (permalink / raw)
To: Pavel Machek
Cc: Linux Kernel Mailing List, len.brown, linux-acpi, linux-pm,
Michael S. Tsirkin
On Sun, Oct 08, 2006 at 06:36:02PM +0000, Pavel Machek wrote:
> On Sun 08-10-06 19:38:09, Adrian Bunk wrote:
> > On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
> > >
> > > On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > > > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > > > that are not yet fixed Linus' tree.
> > > >
> > > > If you find your name in the Cc header, you are either submitter of one
> > > > of the bugs, maintainer of an affectected subsystem or driver, a patch
> > > > of you was declared guilty for a breakage or I'm considering you in any
> > > > other way possibly involved with one or more of these issues.
> > > >
> > > > Due to the huge amount of recipients, please trim the Cc when answering.
> > > ...
> > > > Subject : T60 stops triggering any ACPI events
> > > > References : http://lkml.org/lkml/2006/10/4/425
> > > > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > > > Status : unknown
> > > >
> > > >
> > > > Subject : thinkpad x60: brightness no longer adjustable in 2.6.18-git
> > > > References : http://lkml.org/lkml/2006/10/2/300
> > > > Submitter : Pavel Machek <pavel@ucw.cz>
> > > > Status : unknown, related to the issue above?
> > >
> > > Strange, problem went away after reboot. I guess I'll write it off as
> > > an acpi glitch... there's definitely something strange going on with
> > > backlight around s2ram: during normal operation, backlight changes are
> > > fast. After s2ram, backlight change from keyboard takes 300msec or so.
> >
> > Is this a regression compared to 2.6.18 or an older issue?
>
> Slowness is not something I'd classify as serious problem, and
> breakage is not reproducible. Ignore it for now.
OK, removed.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 17:59 ` Michael S. Tsirkin
@ 2006-10-08 19:30 ` Adrian Bunk
2006-10-16 19:39 ` Michael S. Tsirkin
0 siblings, 1 reply; 19+ messages in thread
From: Adrian Bunk @ 2006-10-08 19:30 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Pavel Machek, Linux Kernel Mailing List, len.brown, linux-acpi,
linux-pm
On Sun, Oct 08, 2006 at 07:59:58PM +0200, Michael S. Tsirkin wrote:
> Quoting r. Adrian Bunk <bunk@stusta.de>:
> > Subject: Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
> >
> > On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
> > >
> > > On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > > > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > > > that are not yet fixed Linus' tree.
> > > >
> > > ...
> > > > Subject : T60 stops triggering any ACPI events
> > > > References : http://lkml.org/lkml/2006/10/4/425
> > > > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > > > Status : unknown
>
> This was on a pre -rc1 git tree.
> I've been using -rc1 since it's out and does not happen to me anymore.
> So we probably can write this off as a memory corruption
> issue that got fixed in between.
Thanks for the information, I've removed it from the list.
> MST
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 7:12 ` x60 backlight Re: [discuss] " Pavel Machek
2006-10-08 17:38 ` Adrian Bunk
@ 2006-10-08 23:44 ` Jeremy Fitzhardinge
1 sibling, 0 replies; 19+ messages in thread
From: Jeremy Fitzhardinge @ 2006-10-08 23:44 UTC (permalink / raw)
To: Pavel Machek
Cc: Adrian Bunk, Linux Kernel Mailing List, len.brown, linux-acpi,
linux-pm
Pavel Machek wrote:
> Strange, problem went away after reboot. I guess I'll write it off as
> an acpi glitch... there's definitely something strange going on with
> backlight around s2ram: during normal operation, backlight changes are
> fast. After s2ram, backlight change from keyboard takes 300msec or so.
>
Yes, I'm seeing that too. It's not just keyboard brightness changes;
gnome does some fadeup effect, which takes ~300ms/step as well.
J
^ permalink raw reply [flat|nested] 19+ messages in thread
* 2.6.19-rc1: known regressions (v3)
[not found] <Pine.LNX.4.64.0610042017340.3952@g5.osdl.org>
[not found] ` <871wpmoyjv.fsf@sycorax.lbl.gov>
2006-10-07 21:46 ` 2.6.19-rc1: known regressions (v2) Adrian Bunk
@ 2006-10-10 5:10 ` Adrian Bunk
2006-10-10 22:58 ` Paul Mackerras
2 siblings, 1 reply; 19+ messages in thread
From: Adrian Bunk @ 2006-10-10 5:10 UTC (permalink / raw)
To: Linus Torvalds
Cc: alsa-devel, Thierry Vignaud, Benjamin Herrenschmidt,
Torsten Kaiser, Linux Kernel Mailing List, linuxppc-dev, pavel,
Andrew de Quincey, Jens Axboe, linux-usb-devel, Steve Fox,
Andreas Schwab, Magnus Damm, lm-sensors, art, Mel Gorman,
Michael Krufky, Sylvain BERTRAND, jgarzik, Prakash Punnoor,
fastboot, Olaf Hering, discuss, Trond Myklebust, Alex Romosan
This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
that are not yet fixed Linus' tree.
If you find your name in the Cc header, you are either submitter of one
of the bugs, maintainer of an affectected subsystem or driver, a patch
of you caused a breakage or I'm considering you in any other way possibly
involved with one or more of these issues.
Due to the huge amount of recipients, please trim the Cc when answering.
Subject : sata-via doesn't detect anymore disks attached to VIA vt6421
References : http://bugzilla.kernel.org/show_bug.cgi?id=7255
Submitter : Thierry Vignaud <tvignaud@mandriva.com>
Status : unknown
Subject : monitor not active after boot
References : http://lkml.org/lkml/2006/10/5/338
Submitter : Olaf Hering <olaf@aepfle.de>
Caused-By : Antonino Daplas <adaplas@pol.net>
commit 346bc21026e7a92e1d7a4a1b3792c5e8b686133d
Status : unknown
Subject : SMP x86_64 boot problem
References : http://lkml.org/lkml/2006/9/28/330
http://lkml.org/lkml/2006/10/5/289
Submitter : art@usfltd.com
Status : submitter was asked to git bisect
result of bisecting seems to be wrong
Subject : sleep/wakeup on powerbooks apparently busted
References : http://lkml.org/lkml/2006/10/5/13
Submitter : Benjamin Herrenschmidt <benh@kernel.crashing.org>
Handled-By : Benjamin Herrenschmidt <benh@kernel.crashing.org>
Status : Benjamin will investigate
Subject : w83781d modprobing failure
References : http://bugzilla.kernel.org/show_bug.cgi?id=7293
Submitter : Sylvain BERTRAND <sylvain.bertrand@gmail.com>
Caused-By : David Hubbard <david.c.hubbard@gmail.com> (?)
commit 8202632647278eba7223727dc442f49227c040d0 (?)
Handled-By : Jean Delvare <khali@linux-fr.org>
Status : Jean is investigating
Subject : CD/DVD drives lost capabilities
References : http://lkml.org/lkml/2006/10/1/45
http://bugzilla.kernel.org/show_bug.cgi?id=7284
Submitter : Olaf Hering <olaf@aepfle.de>
Johannes Berg <johannes@sipsolutions.net>
Caused-By : Jens Axboe <jens.axboe@oracle.com>
commit 4aff5e2333c9a1609662f2091f55c3f6fffdad36
Handled-By : Jens Axboe <jens.axboe@oracle.com>
Status : Jens is working on a fix
Subject : snd-hda-intel <-> forcedeth MSI problem
References : http://lkml.org/lkml/2006/10/5/40
http://lkml.org/lkml/2006/10/7/164
Submitter : Prakash Punnoor <prakash@punnoor.de>
Status : suggested workaround for 2.6.19:
deactivate MSI in snd-intel-hda by default
Subject : DVB frontend selection causes compile errors
References : http://lkml.org/lkml/2006/10/8/244
Submitter : Adrian Bunk <bunk@stusta.de>
Caused-By : "Andrew de Quincey" <adq_dvb@lidskialf.net>
commit 176ac9da4f09820a43fd48f0e74b1486fc3603ba
Handled-By : Michael Krufky <mkrufky@linuxtv.org>
"Andrew de Quincey" <adq_dvb@lidskialf.net>
Status : possible workaround: don't allow CONFIG_DVB_FE_CUSTOMISE=y
Subject : ueagle-atm Oops
References : http://lkml.org/lkml/2006/10/6/390
Submitter : Ernst Herzberg <list-lkml@net4u.de>
Caused-By : Greg Kroah-Hartman <gregkh@suse.de>
commit e7ccdfec087f02930c5cdc81143d4a045ae8d361
Handled-By : Matthieu Castet <castet.matthieu@free.fr>
Laurent Riffard
Patch : https://mail.gna.org/public/ueagleatm-dev/2006-10/msg00022.html
Status : "patch available, but some cleaning is needed"
Subject : oops in xfrm_register_mode
References : http://lkml.org/lkml/2006/10/4/170
Submitter : Steve Fox <drfickle@us.ibm.com>
Handled-By : Vivek Goyal <vgoyal@in.ibm.com>
Status : patch available
Subject : doesn't boot on iBook G4
References : http://lkml.org/lkml/2006/10/5/305
Submitter : Andreas Schwab <schwab@suse.de>
Handled-By : Mel Gorman <mel@skynet.ie>
Patch : http://lkml.org/lkml/2006/10/6/80
Status : patch available
Subject : airo suspend fails
References : http://lkml.org/lkml/2006/10/6/3
Submitter : Alex Romosan <romosan@sycorax.lbl.gov>
Caused-By : Sukadev Bhattiprolu <sukadev@us.ibm.com> (?)
commit 3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5 (?)
Handled-By : Dave Kleikamp <shaggy@austin.ibm.com>
Patch : http://lkml.org/lkml/2006/10/7/139
Status : patch available
Subject : kexec broken on x86_64
References : http://lkml.org/lkml/2006/10/5/86
Submitter : Magnus Damm <magnus.damm@gmail.com>
Handled-By : Vivek Goyal <vgoyal@in.ibm.com>
Patch : http://lkml.org/lkml/2006/10/5/199
Status : patch available
Subject : NFSv4 fails to mount (timeout)
References : http://bugzilla.kernel.org/show_bug.cgi?id=7274
Submitter : Torsten Kaiser <kernel@bardioc.dyndns.org>
Caused-By : Trond Myklebust <Trond.Myklebust@netapp.com>
commit 51b6ded4d9a94a61035deba1d8f51a54e3a3dd86
Handled-By : Trond Myklebust <Trond.Myklebust@netapp.com>
Patch : http://bugzilla.kernel.org/show_bug.cgi?id=7274
Status : patch available
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1: known regressions (v3)
2006-10-10 5:10 ` 2.6.19-rc1: known regressions (v3) Adrian Bunk
@ 2006-10-10 22:58 ` Paul Mackerras
2006-10-11 3:08 ` Adrian Bunk
0 siblings, 1 reply; 19+ messages in thread
From: Paul Mackerras @ 2006-10-10 22:58 UTC (permalink / raw)
To: Adrian Bunk
Cc: fastboot, alsa-devel, Linux Kernel Mailing List, Thierry Vignaud,
discuss, Trond Myklebust, Alex Romosan, Torsten Kaiser,
Olaf Hering, ak, linuxppc-dev, Andrew de Quincey, Dave Kleikamp,
Jens Axboe, Sukadev Bhattiprolu, Antonino Daplas,
v4l-dvb-maintainer, perex, Linus Torvalds, linux-pm,
linux-fbdev-devel, linux-usb-devel, linux-ide, Steve Fox, netdev,
Greg Kroah-Hartman <gregkh>
Adrian Bunk writes:
> Subject : sleep/wakeup on powerbooks apparently busted
> References : http://lkml.org/lkml/2006/10/5/13
> Submitter : Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Handled-By : Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Status : Benjamin will investigate
Should be fixed once Linus pulls the powerpc.git tree.
Paul.
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: 2.6.19-rc1: known regressions (v3)
2006-10-10 22:58 ` Paul Mackerras
@ 2006-10-11 3:08 ` Adrian Bunk
0 siblings, 0 replies; 19+ messages in thread
From: Adrian Bunk @ 2006-10-11 3:08 UTC (permalink / raw)
To: Paul Mackerras
Cc: linux-kernel, linuxppc-dev, pavel, linux-pm,
Benjamin Herrenschmidt
On Wed, Oct 11, 2006 at 08:58:45AM +1000, Paul Mackerras wrote:
> Adrian Bunk writes:
>
> > Subject : sleep/wakeup on powerbooks apparently busted
> > References : http://lkml.org/lkml/2006/10/5/13
> > Submitter : Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > Handled-By : Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > Status : Benjamin will investigate
>
> Should be fixed once Linus pulls the powerpc.git tree.
Thanks for the information, I've removed it from the list.
> Paul.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
2006-10-08 19:30 ` Adrian Bunk
@ 2006-10-16 19:39 ` Michael S. Tsirkin
0 siblings, 0 replies; 19+ messages in thread
From: Michael S. Tsirkin @ 2006-10-16 19:39 UTC (permalink / raw)
To: Adrian Bunk
Cc: len.brown, linux-acpi, Jeff Garzik, linux-pm,
Linux Kernel Mailing List
Quoting r. Adrian Bunk <bunk@stusta.de>:
> Subject: Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
>
> On Sun, Oct 08, 2006 at 07:59:58PM +0200, Michael S. Tsirkin wrote:
> > Quoting r. Adrian Bunk <bunk@stusta.de>:
> > > Subject: Re: x60 backlight Re: [discuss] 2.6.19-rc1: known regressions (v2)
> > >
> > > On Sun, Oct 08, 2006 at 07:12:54AM +0000, Pavel Machek wrote:
> > > >
> > > > On Sat 07-10-06 23:46:21, Adrian Bunk wrote:
> > > > > This email lists some known regressions in 2.6.19-rc1 compared to 2.6.18
> > > > > that are not yet fixed Linus' tree.
> > > > >
> > > > ...
> > > > > Subject : T60 stops triggering any ACPI events
> > > > > References : http://lkml.org/lkml/2006/10/4/425
> > > > > Submitter : "Michael S. Tsirkin" <mst@mellanox.co.il>
> > > > > Status : unknown
> >
> > This was on a pre -rc1 git tree.
> > I've been using -rc1 since it's out and does not happen to me anymore.
> > So we probably can write this off as a memory corruption
> > issue that got fixed in between.
>
> Thanks for the information, I've removed it from the list.
Unfortunately, this came back after using 2.6.19-rc1 for a couple of days
without reboot. And I just re-tested and was able to re-produce the problem on
2.6.19-rc2, as well. So the problem is still there, with the same symptoms:
after usig machine for a while, or under stress (e.g. if I do a full kernel
compile), I stop getting any ACPI events.
tail -f /var/log/acpid
does not show anything, even on Fn/F4 which is supposed ot be always enabled.
Restarting the acpid doesn't do anything either - ACPI starts working
again, for a while, only after reboot.
Worked fine under 2.6.18 (I was running vanilla + this patch
http://lkml.org/lkml/2006/7/20/56 which made it into upstream since then).
Any ideas? How to debug this?
--
MST
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2006-10-16 19:39 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Pine.LNX.4.64.0610042017340.3952@g5.osdl.org>
[not found] ` <871wpmoyjv.fsf@sycorax.lbl.gov>
2006-10-06 18:47 ` 2.6.19-rc1 regression: airo suspend fails Adrian Bunk
2006-10-07 3:54 ` Alex Romosan
2006-10-07 19:52 ` Dave Kleikamp
2006-10-07 20:17 ` Alex Romosan
2006-10-08 6:43 ` Pavel Machek
2006-10-07 21:46 ` 2.6.19-rc1: known regressions (v2) Adrian Bunk
2006-10-08 7:12 ` x60 backlight Re: [discuss] " Pavel Machek
2006-10-08 17:38 ` Adrian Bunk
2006-10-08 17:59 ` Michael S. Tsirkin
2006-10-08 19:30 ` Adrian Bunk
2006-10-16 19:39 ` Michael S. Tsirkin
2006-10-08 18:36 ` Pavel Machek
2006-10-08 19:29 ` Adrian Bunk
2006-10-08 23:44 ` Jeremy Fitzhardinge
2006-10-08 8:56 ` matthieu castet
2006-10-10 5:10 ` 2.6.19-rc1: known regressions (v3) Adrian Bunk
2006-10-10 22:58 ` Paul Mackerras
2006-10-11 3:08 ` Adrian Bunk
2006-10-08 4:43 2.6.19-rc1: known regressions (v2) Trond Myklebust
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox