public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-11 19:56 2.6.26-rc1-git9: Reported regressions from 2.6.25 Rafael J. Wysocki
@ 2008-05-11 20:04 ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-11 20:04 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Gabriel C, Ingo Molnar, Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-08 00:26 (4 days old)
References	: http://lkml.org/lkml/2008/5/7/352
Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug 10648] CONFIG_PRINTK_TIME broken on git HEAD ?
       [not found] <20080515162703.D4970108060@picon.linux-foundation.org>
@ 2008-05-15 16:48 ` Peter Zijlstra
  0 siblings, 0 replies; 105+ messages in thread
From: Peter Zijlstra @ 2008-05-15 16:48 UTC (permalink / raw)
  To: bugme-daemon; +Cc: Ingo Molnar, linux-kernel

Subject: sched: fix sched_clock_cpu()
From: Peter Zijlstra <a.p.zijlstra@chello.nl>

Make sched_clock_cpu() return 0 before it has been initialised and avoid
corrupting its state due to doing so.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
 kernel/sched_clock.c |   18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

Index: linux-2.6/kernel/sched_clock.c
===================================================================
--- linux-2.6.orig/kernel/sched_clock.c	2008-05-13 18:40:35.000000000 +0200
+++ linux-2.6/kernel/sched_clock.c	2008-05-13 18:42:05.000000000 +0200
@@ -60,22 +60,26 @@
 	return &per_cpu(sched_clock_data, cpu);
 }
 
+static __read_mostly int sched_clock_running;
+
 void sched_clock_init(void)
 {
 	u64 ktime_now = ktime_to_ns(ktime_get());
-	u64 now = 0;
+	unsigned long now_jiffies = jiffies;
 	int cpu;
 
 	for_each_possible_cpu(cpu) {
 		struct sched_clock_data *scd = cpu_sdc(cpu);
 
 		scd->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
-		scd->prev_jiffies = jiffies;
-		scd->prev_raw = now;
-		scd->tick_raw = now;
+		scd->prev_jiffies = now_jiffies;
+		scd->prev_raw = 0;
+		scd->tick_raw = 0;
 		scd->tick_gtod = ktime_now;
 		scd->clock = ktime_now;
 	}
+
+	sched_clock_running = 1;
 }
 
 /*
@@ -137,6 +141,9 @@
 	struct sched_clock_data *scd = cpu_sdc(cpu);
 	u64 now, clock;
 
+	if (unlikely(!sched_clock_running))
+		return 0ull;
+
 	/*
 	 * Normally this is not called in NMI context - but if it is,
 	 * trying to do any locking here is totally lethal.
@@ -182,6 +189,9 @@
 	struct sched_clock_data *scd = this_scd();
 	u64 now, now_gtod;
 
+	if (unlikely(!sched_clock_running))
+		return;
+
 	WARN_ON_ONCE(!irqs_disabled());
 
 	now = sched_clock();



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-18 11:10 2.6.26-rc2-git5: Reported regressions from 2.6.25 Rafael J. Wysocki
@ 2008-05-18 11:13 ` Rafael J. Wysocki
  2008-05-18 17:21   ` Peter Zijlstra
  0 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-18 11:13 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Gabriel C, Ingo Molnar, Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-08 00:26 (11 days old)
References	: http://lkml.org/lkml/2008/5/7/352
Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-18 11:13 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
@ 2008-05-18 17:21   ` Peter Zijlstra
  2008-05-18 18:37     ` Peter Zijlstra
  0 siblings, 1 reply; 105+ messages in thread
From: Peter Zijlstra @ 2008-05-18 17:21 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Gabriel C, Ingo Molnar

On Sun, 2008-05-18 at 13:13 +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
> Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
> Submitter	: Gabriel C <nix.or.die@googlemail.com>
> Date		: 2008-05-08 00:26 (11 days old)
> References	: http://lkml.org/lkml/2008/5/7/352
> Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
> 
> 

Could people test this:

git://git.kernel.org/home/peterz/git/linux-2.6-sched.git/ v2.6.26-rc2-group-load-balance


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-18 17:21   ` Peter Zijlstra
@ 2008-05-18 18:37     ` Peter Zijlstra
  2008-05-21  0:38       ` Gabriel C
  0 siblings, 1 reply; 105+ messages in thread
From: Peter Zijlstra @ 2008-05-18 18:37 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Gabriel C, Ingo Molnar

On Sun, 2008-05-18 at 19:21 +0200, Peter Zijlstra wrote:
> On Sun, 2008-05-18 at 13:13 +0200, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 2.6.25.  Please verify if it still should be listed.
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
> > Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
> > Submitter	: Gabriel C <nix.or.die@googlemail.com>
> > Date		: 2008-05-08 00:26 (11 days old)
> > References	: http://lkml.org/lkml/2008/5/7/352
> > Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
> > 
> > 
> 
> Could people test this:
> 
> git://git.kernel.org/home/peterz/git/linux-2.6-sched.git/ v2.6.26-rc2-group-load-balance


Seems I got my own url wrong - the right one is:

git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-sched.git v2.6.26-rc2-group-load-balance



^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-18 18:37     ` Peter Zijlstra
@ 2008-05-21  0:38       ` Gabriel C
  2008-05-21  1:10         ` Gabriel C
  0 siblings, 1 reply; 105+ messages in thread
From: Gabriel C @ 2008-05-21  0:38 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Ingo Molnar

Peter Zijlstra wrote:

> On Sun, 2008-05-18 at 19:21 +0200, Peter Zijlstra wrote:
>> On Sun, 2008-05-18 at 13:13 +0200, Rafael J. Wysocki wrote:
>>> This message has been generated automatically as a part of a report
>>> of recent regressions.
>>>
>>> The following bug entry is on the current list of known regressions
>>> from 2.6.25.  Please verify if it still should be listed.
>>>
>>>
>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
>>> Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
>>> Submitter	: Gabriel C <nix.or.die@googlemail.com>
>>> Date		: 2008-05-08 00:26 (11 days old)
>>> References	: http://lkml.org/lkml/2008/5/7/352
>>> Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
>>>
>>>
>> Could people test this:
>>
>> git://git.kernel.org/home/peterz/git/linux-2.6-sched.git/ v2.6.26-rc2-group-load-balance
> 
> 
> Seems I got my own url wrong - the right one is:
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-sched.git v2.6.26-rc2-group-load-balance
> 
> 


Sorry for the lag , I'm gonna test this now and report back in a bit.

Gabriel

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-21  0:38       ` Gabriel C
@ 2008-05-21  1:10         ` Gabriel C
  0 siblings, 0 replies; 105+ messages in thread
From: Gabriel C @ 2008-05-21  1:10 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Ingo Molnar

Gabriel C wrote:

> Peter Zijlstra wrote:
> 
>> On Sun, 2008-05-18 at 19:21 +0200, Peter Zijlstra wrote:
>>> On Sun, 2008-05-18 at 13:13 +0200, Rafael J. Wysocki wrote:
>>>> This message has been generated automatically as a part of a report
>>>> of recent regressions.
>>>>
>>>> The following bug entry is on the current list of known regressions
>>>> from 2.6.25.  Please verify if it still should be listed.
>>>>
>>>>
>>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
>>>> Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
>>>> Submitter	: Gabriel C <nix.or.die@googlemail.com>
>>>> Date		: 2008-05-08 00:26 (11 days old)
>>>> References	: http://lkml.org/lkml/2008/5/7/352
>>>> Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
>>>>
>>>>
>>> Could people test this:
>>>
>>> git://git.kernel.org/home/peterz/git/linux-2.6-sched.git/ v2.6.26-rc2-group-load-balance
>>
>> Seems I got my own url wrong - the right one is:
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-sched.git v2.6.26-rc2-group-load-balance
>>
>>
> 
> 
> Sorry for the lag , I'm gonna test this now and report back in a bit.


Peter thx , it fixes the problem for me.

Gabriel





^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-24 20:28 2.6.26-rc3-git7: Reported regressions from 2.6.25 Rafael J. Wysocki
@ 2008-05-24 20:31 ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-24 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Gabriel C, Ingo Molnar, Peter Zijlstra, Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-08 00:26 (17 days old)
References	: http://lkml.org/lkml/2008/5/7/352
Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
		  Peter Zijlstra <peterz@infradead.org>
Patch		: http://bugzilla.kernel.org/show_bug.cgi?id=10648#c3



^ permalink raw reply	[flat|nested] 105+ messages in thread

* 2.6.26-rc4-git4: Reported regressions from 2.6.25
@ 2008-05-31 17:44 Rafael J. Wysocki
  2008-05-31 17:44 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
                   ` (50 more replies)
  0 siblings, 51 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:44 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Adrian Bunk, Andrew Morton, Linus Torvalds, Natalie Protasevich

This message contains a list of some regressions from 2.6.25, for which there
are no fixes in the mainline I know of.  If any of them have been fixed already,
please let me know.

If you know of any other unresolved regressions from 2.6.25, please let me know
either and I'll add them to the list.  Also, please let me know if any of the
entries below are invalid.

Each entry from the list will be sent additionally in an automatic reply to
this message with CCs to the people involved in reporting and handling the
issue.


Listed regressions statistics:

  Date          Total  Pending  Unresolved
  ----------------------------------------
  2008-05-31      115       52          31
  2008-05-24       94       47          28
  2008-05-18       80       51          37
  2008-05-11       53       46          34


Unresolved regressions
----------------------

Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10831
Subject		: Barely understandeable sound with snd_hda_intel and 2.6.26-rc4
Submitter	: Andres Freund <andres@anarazel.de>
Date		: 2008-05-29 22:04 (3 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121209876820617&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10827
Subject		: 2.6.26rc4 GFS2 oops.
Submitter	: Dave Jones <davej@redhat.com>
Date		: 2008-05-27 15:44 (5 days old)
References	: http://lkml.org/lkml/2008/5/27/297


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10826
Subject		: NFS oops in 2.6.26rc4
Submitter	: Dave Jones <davej@redhat.com>
Date		: 2008-05-27 19:04 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121191548915522&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10825
Subject		: appletouch after wakeup
Submitter	: Justin Mattock <justinmattock@gmail.com>
Date		: 2008-05-27 3:29 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121185900618047&amp;w=4
Handled-By	: Oliver Neukum <oliver@neukum.org>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10823
Subject		: stuck localhost TCP connections, v2.6.26-rc3+
Submitter	: Ingo Molnar <mingo@elte.hu>
Date		: 2008-05-26 11:56 (6 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121180311931349&amp;w=4
Handled-By	: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10822
Subject		: sky2 oops in 2.6.26-rc3
Submitter	: Mikael Pettersson <mikpe@it.uu.se>
Date		: 2008-05-25 17:27 (7 days old)
References	: http://marc.info/?l=linux-netdev&amp;m=121173650915153&amp;w=4
Handled-By	: Stephen Hemminger <shemminger@linux-foundation.org>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10821
Subject		: rt25xx: lock dependancy warning, association failure, and kmalloc corruption
Submitter	: Christian Casteyde <casteyde.christian@free.fr>
Date		: 2008-05-29 14:30 (3 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10819
Subject		: Fatal DMA error with b43 driver since 2.6.26
Submitter	: Christian Casteyde <casteyde.christian@free.fr>
Date		: 2008-05-29 13:16 (3 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10799
Subject		: sky2 general protection fault
Submitter	: Nicolas Mailhot <Nicolas.Mailhot@LaPoste.net>
Date		: 2008-05-26 11:05 (6 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10798
Subject		: kbuild variable $(src) broken in 2.6.23-rc3?
Submitter	: tvrtko.ursulin <tvrtko.ursulin@sophos.com>
Date		: 2008-05-21 14:42 (11 days old)
References	: http://marc.info/?l=linux-kbuild&amp;m=121138246208259&amp;w=2
Handled-By	: Sam Ravnborg <sam@ravnborg.org>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10794
Subject		: mips: CONF_CM_DEFAULT build error
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-25 10:11 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/168


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10786
Subject		: 2.6.26-rc3 64bit SMP does not boot on J5600
Submitter	: Domenico Andreoli <cavokz@gmail.com>
Date		: 2008-05-22 16:14 (10 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121147328028081&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10764
Subject		: some serial configurations are now broken
Submitter	: Russell King <rmk+lkml@arm.linux.org.uk>
Date		: 2008-05-20 7:35 (12 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121126931810706&amp;w=2
Handled-By	: Javier Herrero <jherrero@hvsistemas.es>
		  Russell King <rmk+lkml@arm.linux.org.uk>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10761
Subject		: hackbench regression with 2.6.26-rc2 on tulsa machine
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-20 8:09 (12 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121127121813708&amp;w=2
Handled-By	: Mike Galbraith <efault@gmx.de>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10760
Subject		: PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3
Submitter	: Ryan Hope <rmh3093@gmail.com>
Date		: 2008-05-19 17:47 (13 days old)
References	: http://marc.info/?l=linux-pci&amp;m=121121926401755&amp;w=2
Handled-By	: Matthew Wilcox <matthew@wil.cx>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10749
Subject		: the system doesn't shutdown
Submitter	: Riccardo <goric@trivenet.it>
Date		: 2008-05-19 09:00 (13 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10748
Subject		: dhclient fails to run; capabilities error
Submitter	: Amit Shah <shahamit@gmail.com>
Date		: 2008-05-19 06:25 (13 days old)


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
Subject		: bug in `tty: BKL pushdown'?
Submitter	: Johannes Weiner <hannes@saeurebad.de>
Date		: 2008-05-18 2:16 (14 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10730
Subject		: build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware'
Submitter	: Toralf Förster <toralf.foerster@gmx.de>
Date		: 2008-05-16 17:06 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121095777616792&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10725
Subject		: Write protect on on
Submitter	: Maciej Rutecki <maciej.rutecki@gmail.com>
Date		: 2008-05-16 14:55 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121095168003572&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10724
Subject		: ACPI : EC: GPE
Submitter	: Justin Mattock <justinmattock@gmail.com>
Date		: 2008-05-16 6:17 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121091875711824&amp;w=4
		  http://lkml.org/lkml/2008/5/18/168
		  http://lkml.org/lkml/2008/5/25/195
		  http://lkml.org/lkml/2008/5/25/195


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10715
Subject		: 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc
Submitter	: Pavel Machek <pavel@suse.cz>
Date		: 2008-05-15 13:23 (17 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121085784809468&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10714
Subject		: Badness seen on 2.6.26-rc2 with lockdep enabled
Submitter	: Balbir Singh <balbir@linux.vnet.ibm.com>
Date		: 2008-05-14 12:57 (18 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121076917429133&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10711
Subject		: BUG: unable to handle kernel paging request - scsi_bus_uevent
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2008-05-14 11:23 (18 days old)
References	: http://lkml.org/lkml/2008/5/14/111


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10686
Subject		: critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700
Submitter	: Len Brown <len.brown@intel.com>
Date		: 2008-05-12 20:04 (20 days old)
Handled-By	: Robert Moore <Robert.Moore@intel.com>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10642
Subject		: general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2008-05-07 16:03 (25 days old)
References	: http://lkml.org/lkml/2008/5/7/48


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10632
Subject		: [2.6.26-rc1] Output to console stops when booted without 'vga=791'
Submitter	: Frans Pop <elendil@planet.nl>
Date		: 2008-05-05 13:51 (27 days old)
References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/2080.html


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10629
Subject		: 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160
Submitter	: Alexey Dobriyan <adobriyan@gmail.com>
Date		: 2008-05-05 09:59 (27 days old)
References	: http://lkml.org/lkml/2008/5/5/28
Handled-By	: Paul E. McKenney <paulmck@linux.vnet.ibm.com>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10614
Subject		: WARNING: at include/linux/blkdev.h:431 blk_queue_init_tags+0x110/0x11f()
Submitter	: J.A. Magallón <jamagallon@ono.com>
Date		: 2008-05-01 02:50 (31 days old)
References	: http://lkml.org/lkml/2008/4/30/614
Handled-By	: Nick Piggin <npiggin@suse.de>
		  Jens Axboe <jens.axboe@oracle.com>


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10493
Subject		: mips BCM47XX compile error
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-04-20 17:07 (42 days old)
References	: http://lkml.org/lkml/2008/4/20/34
		  http://lkml.org/lkml/2008/5/12/30
		  http://lkml.org/lkml/2008/5/18/131


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=9791
Subject		: Clock is running too fast^Wslow using acpi_pm clocksource
Submitter	: tosn00j02@sneakemail.com
Date		: 2008-05-03 05:09 (29 days old)


Regressions with patches
------------------------

Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10841
Subject		: asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-31 07:29 (1 days old)
References	: http://lkml.org/lkml/2008/5/31/87
Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
Patch		: http://lkml.org/lkml/2008/5/31/87


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10830
Subject		: two different oopses with 2.6.26-rc4
Submitter	: Alejandro Riveira Fernández <alejandro.riveira@gmail.com>
Date		: 2008-05-28 9:50 (4 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121196833026310&amp;w=4
Handled-By	: Johannes Berg <johannes@sipsolutions.net>
		  Andrew Morton <akpm@linux-foundation.org>
		  Peter Zijlstra <a.p.zijlstra@chello.nl>
Patch		: http://lkml.org/lkml/2008/5/20/683


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10829
Subject		: sh/kernel/cpu/irq/intc-sh5.c build fix
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-29 15:06 (3 days old)
References	: http://lkml.org/lkml/2008/5/29/492
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/29/492


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10828
Subject		: [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error
Submitter	: Rufus &amp; Azrael <rufus-azrael@numericable.fr>
Date		: 2008-05-04 10:24 (28 days old)
References	: http://lkml.org/lkml/2008/5/4/37
Handled-By	: Ingo Molnar <mingo@elte.hu>
		  H. Peter Anvin <hpa@zytor.com>
		  Pallipadi, Venkatesh <venkatesh.pallipadi@intel.com>
Patch		: http://lkml.org/lkml/2008/5/29/371


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10816
Subject		: vt/fbcon: fix background color on line feed
Submitter	: thunder7 <thunder7@xs4all.nl>
Date		: 2008-05-27 19:33 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp;w=4
Handled-By	: Jan Engelhardt <jengelh@medozas.de>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121199453010047&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10815
Subject		: 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0
Submitter	: Alexey Dobriyan <adobriyan@gmail.com>
Date		: 2008-05-27 09:23 (5 days old)
References	: http://lkml.org/lkml/2008/5/27/9
Handled-By	: Oleg Nesterov <oleg@tv-sign.ru>
		  Linus Torvalds <torvalds@linux-foundation.org>
		  Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Patch		: http://lkml.org/lkml/2008/5/28/16


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10795
Subject		: MIPS SEAD compile fix
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-25 11:10 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/178
Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
Patch		: http://lkml.org/lkml/2008/5/25/178


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10792
Subject		: mips/kernel/traps.c build error
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-25 09:48 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/158
Patch		:  in the mips tree


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10787
Subject		: pcie hotplug bootup crash fix
Submitter	: Ingo Molnar <mingo@elte.hu>
Date		: 2008-05-24 16:58 (8 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121164842212038&amp;w=4
Handled-By	: Ingo Molnar <mingo@elte.hu>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121164842212038&amp;w=4


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10765
Subject		: iwl3945/mac80211: association times out since 2.6.26-rc1
Submitter	: Michael S. Tsirkin <m.s.tsirkin@gmail.com>
Date		: 2008-05-20 22:46 (12 days old)
Handled-By	: Zhu Yi <yi.zhu@intel.com>
		  Johannes Berg <johannes@sipsolutions.net>
Patch		: http://article.gmane.org/gmane.linux.kernel.wireless.general/15177


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10762
Subject		: ocfs2: rename user_stack{,_ops}
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-20 16:01 (12 days old)
References	: http://lkml.org/lkml/2008/5/20/603
		  http://marc.info/?l=linux-kernel&amp;m=121166610504166&amp;w=4
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/20/603


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10726
Subject		: x86-64 NODES_SHIFT compile failure.
Submitter	: Dave Jones <davej@codemonkey.org.uk>
Date		: 2008-05-16 12:54 (16 days old)
References	: http://lkml.org/lkml/2008/5/16/312
Handled-By	: Mike Travis <travis@sgi.com>
Patch		: http://lkml.org/lkml/2008/5/16/343


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10716
Subject		: VIDEO_DEV=y, DVB_CORE=m build error
Submitter	: Toralf Förster <toralf.foerster@gmx.de>
Date		: 2008-05-15 13:15 (17 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121085736708543&amp;w=4
		  http://lkml.org/lkml/2008/5/18/128
		  http://marc.info/?l=linux-kernel&amp;m=121166610604173&amp;w=4
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/16/47


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10670
Subject		: BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status
Submitter	: Karol Lewandowski <lmctlx@gmail.com>
Date		: 2008-05-08 23:12 (24 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121028841527994&amp;w=4
		  http://lkml.org/lkml/2008/5/12/12
Handled-By	: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16153&amp;action=view


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10669
Subject		: ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6)
Submitter	: Vegard Nossum <vegard.nossum@gmail.com>
Date		: 2008-05-06 16:09 (26 days old)
References	: http://marc.info/?l=linux-acpi&amp;m=121009034825514&amp;w=4
Handled-By	: Lin Ming <ming.m.lin@intel.com>
		  Ming Lin <ming.m.lin@intel.com>
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16199&amp;action=view


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-08 00:26 (24 days old)
References	: http://lkml.org/lkml/2008/5/7/352
Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
		  Peter Zijlstra <peterz@infradead.org>
Patch		: http://bugzilla.kernel.org/show_bug.cgi?id=10648#c3


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10638
Subject		: sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-07 4:55 (25 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121013681527052&amp;w=2
		  http://lkml.org/lkml/2008/5/18/177
Handled-By	: Ingo Molnar <mingo@elte.hu>
		  Peter Zijlstra <peterz@infradead.org>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121015292616802&amp;w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10634
Subject		: volanoMark regression with kernel 2.6.26-rc1
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-06 2:06 (26 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121003968414287&amp;w=2
Handled-By	: Dhaval Giani <dhaval@linux.vnet.ibm.com>
		  Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
		  Ingo Molnar <mingo@elte.hu>
		  Peter Zijlstra <a.p.zijlstra@chello.nl>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121015292616788&amp;w=2


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10616
Subject		: Horrendous Audio Stutter - current git
Submitter	: Parag Warudkar <parag.warudkar@gmail.com>
Date		: 2008-05-02 20:14 (30 days old)
References	: http://lkml.org/lkml/2008/5/1/440
		  http://lkml.org/lkml/2008/5/11/230
		  http://lkml.org/lkml/2008/5/18/178
Handled-By	: Peter Zijlstra <peterz@infradead.org>
Patch		: http://lkml.org/lkml/2008/5/2/126


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10613
Subject		: BIOS bug, APIC version is 0 for CPU#0!
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-03 15:11 (29 days old)
References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/1258.html
Handled-By	: Yinghai Lu <yhlu.kernel@gmail.com>
Patch		: http://lkml.org/lkml/2008/5/22/493


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10606
Subject		: 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530
Submitter	: NIgel Cunningham <nigel@suspend2.net>
Date		: 2008-05-05 18:11 (27 days old)
References	: http://lkml.org/lkml/2008/5/18/328
		  http://lkml.org/lkml/2008/5/26/3
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16061&amp;action=view


For details, please visit the bug entries and follow the links given in
references.

As you can see, there is a Bugzilla entry for each of the listed regressions.
There also is a Bugzilla entry used for tracking the regressions from 2.6.25,
unresolved as well as resolved, at:

http://bugzilla.kernel.org/show_bug.cgi?id=10492

Please let me know if there are any Bugzilla entries that should be added to
the list in there.

Thanks,
Rafael


^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10493] mips BCM47XX compile error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
@ 2008-05-31 17:44 ` Rafael J. Wysocki
  2008-05-31 20:09   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10616] Horrendous Audio Stutter - current git Rafael J. Wysocki
                   ` (49 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:44 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10493
Subject		: mips BCM47XX compile error
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-04-20 17:07 (42 days old)
References	: http://lkml.org/lkml/2008/4/20/34
		  http://lkml.org/lkml/2008/5/12/30
		  http://lkml.org/lkml/2008/5/18/131



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (22 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10726] x86-64 NODES_SHIFT compile failure Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-03  2:10   ` Nigel Cunningham
  2008-05-31 17:48 ` [Bug #10764] some serial configurations are now broken Rafael J. Wysocki
                   ` (26 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: NIgel Cunningham

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10606
Subject		: 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530
Submitter	: NIgel Cunningham <nigel@suspend2.net>
Date		: 2008-05-05 18:11 (27 days old)
References	: http://lkml.org/lkml/2008/5/18/328
		  http://lkml.org/lkml/2008/5/26/3
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16061&amp;action=view



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10613] BIOS bug, APIC version is 0 for CPU#0!
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (20 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10749] the system doesn't shutdown Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-01  0:49   ` Gabriel C
  2008-05-31 17:48 ` [Bug #10726] x86-64 NODES_SHIFT compile failure Rafael J. Wysocki
                   ` (28 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Gabriel C, Yinghai Lu

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10613
Subject		: BIOS bug, APIC version is 0 for CPU#0!
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-03 15:11 (29 days old)
References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/1258.html
Handled-By	: Yinghai Lu <yhlu.kernel@gmail.com>
Patch		: http://lkml.org/lkml/2008/5/22/493



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10616] Horrendous Audio Stutter - current git
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
  2008-05-31 17:44 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10748] dhclient fails to run; capabilities error Rafael J. Wysocki
                   ` (48 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Parag Warudkar, Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10616
Subject		: Horrendous Audio Stutter - current git
Submitter	: Parag Warudkar <parag.warudkar@gmail.com>
Date		: 2008-05-02 20:14 (30 days old)
References	: http://lkml.org/lkml/2008/5/1/440
		  http://lkml.org/lkml/2008/5/11/230
		  http://lkml.org/lkml/2008/5/18/178
Handled-By	: Peter Zijlstra <peterz@infradead.org>
Patch		: http://lkml.org/lkml/2008/5/2/126



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10629] 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (15 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791' Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10669] ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6) Rafael J. Wysocki
                   ` (33 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Alexey Dobriyan, Paul E. McKenney

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10629
Subject		: 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160
Submitter	: Alexey Dobriyan <adobriyan@gmail.com>
Date		: 2008-05-05 09:59 (27 days old)
References	: http://lkml.org/lkml/2008/5/5/28
Handled-By	: Paul E. McKenney <paulmck@linux.vnet.ibm.com>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10634] volanoMark regression with kernel 2.6.26-rc1
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (7 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10741] bug in `tty: BKL pushdown'? Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 19:02   ` Dhaval Giani
  2008-05-31 17:48 ` [Bug #10730] build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware' Rafael J. Wysocki
                   ` (41 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Dhaval Giani, Ingo Molnar, Peter Zijlstra, Srivatsa Vaddagiri,
	Zhang, Yanmin

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10634
Subject		: volanoMark regression with kernel 2.6.26-rc1
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-06 2:06 (26 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121003968414287&amp;w=2
Handled-By	: Dhaval Giani <dhaval@linux.vnet.ibm.com>
		  Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
		  Ingo Molnar <mingo@elte.hu>
		  Peter Zijlstra <a.p.zijlstra@chello.nl>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121015292616788&amp;w=2



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791'
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (14 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10642] general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 22:27   ` Frans Pop
  2008-05-31 17:48 ` [Bug #10629] 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160 Rafael J. Wysocki
                   ` (34 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Frans Pop

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10632
Subject		: [2.6.26-rc1] Output to console stops when booted without 'vga=791'
Submitter	: Frans Pop <elendil@planet.nl>
Date		: 2008-05-05 13:51 (27 days old)
References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/2080.html



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10638] sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (10 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10725] Write protect on on Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10715] 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc Rafael J. Wysocki
                   ` (38 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Ingo Molnar, Peter Zijlstra, Peter Zijlstra, Zhang, Yanmin

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10638
Subject		: sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-07 4:55 (25 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121013681527052&amp;w=2
		  http://lkml.org/lkml/2008/5/18/177
Handled-By	: Ingo Molnar <mingo@elte.hu>
		  Peter Zijlstra <peterz@infradead.org>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121015292616802&amp;w=2



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (17 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10669] ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6) Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-01  0:45   ` Gabriel C
  2008-05-31 17:48 ` [Bug #10724] ACPI : EC: GPE Rafael J. Wysocki
                   ` (31 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Gabriel C, Ingo Molnar, Peter Zijlstra, Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
Submitter	: Gabriel C <nix.or.die@googlemail.com>
Date		: 2008-05-08 00:26 (24 days old)
References	: http://lkml.org/lkml/2008/5/7/352
Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
		  Peter Zijlstra <peterz@infradead.org>
Patch		: http://bugzilla.kernel.org/show_bug.cgi?id=10648#c3



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10669] ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6)
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (16 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10629] 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
                   ` (32 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Lin Ming, Ming Lin, Vegard Nossum

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10669
Subject		: ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6)
Submitter	: Vegard Nossum <vegard.nossum@gmail.com>
Date		: 2008-05-06 16:09 (26 days old)
References	: http://marc.info/?l=linux-acpi&amp;m=121009034825514&amp;w=4
Handled-By	: Lin Ming <ming.m.lin@intel.com>
		  Ming Lin <ming.m.lin@intel.com>
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16199&amp;action=view



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10711] BUG: unable to handle kernel paging request - scsi_bus_uevent
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (5 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10670] BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10741] bug in `tty: BKL pushdown'? Rafael J. Wysocki
                   ` (43 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Zdenek Kabelac

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10711
Subject		: BUG: unable to handle kernel paging request - scsi_bus_uevent
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2008-05-14 11:23 (18 days old)
References	: http://lkml.org/lkml/2008/5/14/111



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10670] BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (4 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10714] Badness seen on 2.6.26-rc2 with lockdep enabled Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10711] BUG: unable to handle kernel paging request - scsi_bus_uevent Rafael J. Wysocki
                   ` (44 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Henrique de Moraes Holschuh, Karol Lewandowski

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10670
Subject		: BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status
Submitter	: Karol Lewandowski <lmctlx@gmail.com>
Date		: 2008-05-08 23:12 (24 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121028841527994&amp;w=4
		  http://lkml.org/lkml/2008/5/12/12
Handled-By	: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16153&amp;action=view



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10724] ACPI : EC: GPE
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (18 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 19:54   ` Justin Mattock
  2008-05-31 17:48 ` [Bug #10749] the system doesn't shutdown Rafael J. Wysocki
                   ` (30 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Justin Mattock

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10724
Subject		: ACPI : EC: GPE
Submitter	: Justin Mattock <justinmattock@gmail.com>
Date		: 2008-05-16 6:17 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121091875711824&amp;w=4
		  http://lkml.org/lkml/2008/5/18/168
		  http://lkml.org/lkml/2008/5/25/195
		  http://lkml.org/lkml/2008/5/25/195



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10715] 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (11 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10638] sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10686] critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700 Rafael J. Wysocki
                   ` (37 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Pavel Machek

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10715
Subject		: 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc
Submitter	: Pavel Machek <pavel@suse.cz>
Date		: 2008-05-15 13:23 (17 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121085784809468&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10726] x86-64 NODES_SHIFT compile failure.
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (21 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10613] BIOS bug, APIC version is 0 for CPU#0! Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530 Rafael J. Wysocki
                   ` (27 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Dave Jones, Mike Travis

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10726
Subject		: x86-64 NODES_SHIFT compile failure.
Submitter	: Dave Jones <davej@codemonkey.org.uk>
Date		: 2008-05-16 12:54 (16 days old)
References	: http://lkml.org/lkml/2008/5/16/312
Handled-By	: Mike Travis <travis@sgi.com>
Patch		: http://lkml.org/lkml/2008/5/16/343



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10725] Write protect on on
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (9 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10730] build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware' Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10638] sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1 Rafael J. Wysocki
                   ` (39 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Maciej Rutecki

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10725
Subject		: Write protect on on
Submitter	: Maciej Rutecki <maciej.rutecki@gmail.com>
Date		: 2008-05-16 14:55 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121095168003572&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (2 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10748] dhclient fails to run; capabilities error Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-03 18:33   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10714] Badness seen on 2.6.26-rc2 with lockdep enabled Rafael J. Wysocki
                   ` (46 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk, Toralf Förster

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10716
Subject		: VIDEO_DEV=y, DVB_CORE=m build error
Submitter	: Toralf Förster <toralf.foerster@gmx.de>
Date		: 2008-05-15 13:15 (17 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121085736708543&amp;w=4
		  http://lkml.org/lkml/2008/5/18/128
		  http://marc.info/?l=linux-kernel&amp;m=121166610604173&amp;w=4
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/16/47



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10749] the system doesn't shutdown
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (19 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10724] ACPI : EC: GPE Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10613] BIOS bug, APIC version is 0 for CPU#0! Rafael J. Wysocki
                   ` (29 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Bartlomiej Zolnierkiewicz, Riccardo

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10749
Subject		: the system doesn't shutdown
Submitter	: Riccardo <goric@trivenet.it>
Date		: 2008-05-19 09:00 (13 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10748] dhclient fails to run; capabilities error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
  2008-05-31 17:44 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10616] Horrendous Audio Stutter - current git Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error Rafael J. Wysocki
                   ` (47 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Amit Shah

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10748
Subject		: dhclient fails to run; capabilities error
Submitter	: Amit Shah <shahamit@gmail.com>
Date		: 2008-05-19 06:25 (13 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10642] general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (13 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10686] critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791' Rafael J. Wysocki
                   ` (35 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Zdenek Kabelac

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10642
Subject		: general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC
Submitter	: Zdenek Kabelac <zdenek.kabelac@gmail.com>
Date		: 2008-05-07 16:03 (25 days old)
References	: http://lkml.org/lkml/2008/5/7/48



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10741] bug in `tty: BKL pushdown'?
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (6 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10711] BUG: unable to handle kernel paging request - scsi_bus_uevent Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-02  8:13   ` Johannes Weiner
  2008-05-31 17:48 ` [Bug #10634] volanoMark regression with kernel 2.6.26-rc1 Rafael J. Wysocki
                   ` (42 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Alan Cox, Johannes Weiner

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
Subject		: bug in `tty: BKL pushdown'?
Submitter	: Johannes Weiner <hannes@saeurebad.de>
Date		: 2008-05-18 2:16 (14 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10686] critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (12 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10715] 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10642] general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC Rafael J. Wysocki
                   ` (36 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Len Brown, Robert Moore

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10686
Subject		: critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700
Submitter	: Len Brown <len.brown@intel.com>
Date		: 2008-05-12 20:04 (20 days old)
Handled-By	: Robert Moore <Robert.Moore@intel.com>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10730] build issue #503 for v2.6.26-rc2-433-gf26a398 :  undefined reference to `request_firmware'
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (8 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10634] volanoMark regression with kernel 2.6.26-rc1 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10725] Write protect on on Rafael J. Wysocki
                   ` (40 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Toralf Förster

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10730
Subject		: build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware'
Submitter	: Toralf Förster <toralf.foerster@gmx.de>
Date		: 2008-05-16 17:06 (16 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121095777616792&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10714] Badness seen on 2.6.26-rc2 with lockdep enabled
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (3 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10670] BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status Rafael J. Wysocki
                   ` (45 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Balbir Singh

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10714
Subject		: Badness seen on 2.6.26-rc2 with lockdep enabled
Submitter	: Balbir Singh <balbir@linux.vnet.ibm.com>
Date		: 2008-05-14 12:57 (18 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121076917429133&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10815] 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (33 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3? Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10823] stuck localhost TCP connections, v2.6.26-rc3+ Rafael J. Wysocki
                   ` (15 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Alexey Dobriyan, Linus Torvalds, Oleg Nesterov, Paul E. McKenney

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10815
Subject		: 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0
Submitter	: Alexey Dobriyan <adobriyan@gmail.com>
Date		: 2008-05-27 09:23 (5 days old)
References	: http://lkml.org/lkml/2008/5/27/9
Handled-By	: Oleg Nesterov <oleg@tv-sign.ru>
		  Linus Torvalds <torvalds@linux-foundation.org>
		  Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Patch		: http://lkml.org/lkml/2008/5/28/16



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10821] rt25xx: lock dependancy warning, association failure, and kmalloc corruption
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (44 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10819] Fatal DMA error with b43 driver since 2.6.26 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10822] sky2 oops in 2.6.26-rc3 Rafael J. Wysocki
                   ` (4 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Christian Casteyde

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10821
Subject		: rt25xx: lock dependancy warning, association failure, and kmalloc corruption
Submitter	: Christian Casteyde <casteyde.christian@free.fr>
Date		: 2008-05-29 14:30 (3 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10825] appletouch after wakeup
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (46 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10822] sky2 oops in 2.6.26-rc3 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 18:30   ` Oliver Neukum
  2008-05-31 17:48 ` [Bug #10792] mips/kernel/traps.c build error Rafael J. Wysocki
                   ` (2 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Justin Mattock, Oliver Neukum

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10825
Subject		: appletouch after wakeup
Submitter	: Justin Mattock <justinmattock@gmail.com>
Date		: 2008-05-27 3:29 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121185900618047&amp;w=4
Handled-By	: Oliver Neukum <oliver@neukum.org>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10826] NFS oops in 2.6.26rc4
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (27 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10828] [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10831] Barely understandeable sound with snd_hda_intel and 2.6.26-rc4 Rafael J. Wysocki
                   ` (21 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Dave Jones

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10826
Subject		: NFS oops in 2.6.26rc4
Submitter	: Dave Jones <davej@redhat.com>
Date		: 2008-05-27 19:04 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121191548915522&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10831] Barely understandeable sound with snd_hda_intel and 2.6.26-rc4
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (28 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10826] NFS oops in 2.6.26rc4 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix Rafael J. Wysocki
                   ` (20 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Andres Freund

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10831
Subject		: Barely understandeable sound with snd_hda_intel and 2.6.26-rc4
Submitter	: Andres Freund <andres@anarazel.de>
Date		: 2008-05-29 22:04 (3 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121209876820617&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10830] two different oopses with 2.6.26-rc4
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (24 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10764] some serial configurations are now broken Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10786] 2.6.26-rc3 64bit SMP does not boot on J5600 Rafael J. Wysocki
                   ` (24 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Alejandro Riveira Fernández, Andrew Morton, Johannes Berg,
	Peter Zijlstra

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10830
Subject		: two different oopses with 2.6.26-rc4
Submitter	: Alejandro Riveira Fernández <alejandro.riveira@gmail.com>
Date		: 2008-05-28 9:50 (4 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121196833026310&amp;w=4
Handled-By	: Johannes Berg <johannes@sipsolutions.net>
		  Andrew Morton <akpm@linux-foundation.org>
		  Peter Zijlstra <a.p.zijlstra@chello.nl>
Patch		: http://lkml.org/lkml/2008/5/20/683



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10827] 2.6.26rc4 GFS2 oops.
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (42 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10816] vt/fbcon: fix background color on line feed Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10819] Fatal DMA error with b43 driver since 2.6.26 Rafael J. Wysocki
                   ` (6 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Dave Jones

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10827
Subject		: 2.6.26rc4 GFS2 oops.
Submitter	: Dave Jones <davej@redhat.com>
Date		: 2008-05-27 15:44 (5 days old)
References	: http://lkml.org/lkml/2008/5/27/297



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (29 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10831] Barely understandeable sound with snd_hda_intel and 2.6.26-rc4 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-02  9:16   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10787] pcie hotplug bootup crash fix Rafael J. Wysocki
                   ` (19 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10829
Subject		: sh/kernel/cpu/irq/intc-sh5.c build fix
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-29 15:06 (3 days old)
References	: http://lkml.org/lkml/2008/5/29/492
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/29/492



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (31 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10787] pcie hotplug bootup crash fix Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 20:09   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3? Rafael J. Wysocki
                   ` (17 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10841
Subject		: asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-31 07:29 (1 days old)
References	: http://lkml.org/lkml/2008/5/31/87
Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
Patch		: http://lkml.org/lkml/2008/5/31/87



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #9791] Clock is running too fast^Wslow using acpi_pm clocksource
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (49 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10794] mips: CONF_CM_DEFAULT " Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: "tosn00j02

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=9791
Subject		: Clock is running too fast^Wslow using acpi_pm clocksource
Submitter	: tosn00j02@sneakemail.com
Date		: 2008-05-03 05:09 (29 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10828] [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (26 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10786] 2.6.26-rc3 64bit SMP does not boot on J5600 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10826] NFS oops in 2.6.26rc4 Rafael J. Wysocki
                   ` (22 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: H. Peter Anvin, Ingo Molnar, Pallipadi, Venkatesh,
	Rufus &amp; Azrael

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10828
Subject		: [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error
Submitter	: Rufus &amp; Azrael <rufus-azrael@numericable.fr>
Date		: 2008-05-04 10:24 (28 days old)
References	: http://lkml.org/lkml/2008/5/4/37
Handled-By	: Ingo Molnar <mingo@elte.hu>
		  H. Peter Anvin <hpa@zytor.com>
		  Pallipadi, Venkatesh <venkatesh.pallipadi@intel.com>
Patch		: http://lkml.org/lkml/2008/5/29/371



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10823] stuck localhost TCP connections, v2.6.26-rc3+
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (34 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10815] 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10795] MIPS SEAD compile fix Rafael J. Wysocki
                   ` (14 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Ilpo Järvinen, Ingo Molnar

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10823
Subject		: stuck localhost TCP connections, v2.6.26-rc3+
Submitter	: Ingo Molnar <mingo@elte.hu>
Date		: 2008-05-26 11:56 (6 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121180311931349&amp;w=4
Handled-By	: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10822] sky2 oops in 2.6.26-rc3
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (45 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10821] rt25xx: lock dependancy warning, association failure, and kmalloc corruption Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-01  0:10   ` Mikael Pettersson
  2008-05-31 17:48 ` [Bug #10825] appletouch after wakeup Rafael J. Wysocki
                   ` (3 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Mikael Pettersson, Stephen Hemminger

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10822
Subject		: sky2 oops in 2.6.26-rc3
Submitter	: Mikael Pettersson <mikpe@it.uu.se>
Date		: 2008-05-25 17:27 (7 days old)
References	: http://marc.info/?l=linux-netdev&amp;m=121173650915153&amp;w=4
Handled-By	: Stephen Hemminger <shemminger@linux-foundation.org>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10819] Fatal DMA error with b43 driver since 2.6.26
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (43 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10827] 2.6.26rc4 GFS2 oops Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10821] rt25xx: lock dependancy warning, association failure, and kmalloc corruption Rafael J. Wysocki
                   ` (5 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Christian Casteyde

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10819
Subject		: Fatal DMA error with b43 driver since 2.6.26
Submitter	: Christian Casteyde <casteyde.christian@free.fr>
Date		: 2008-05-29 13:16 (3 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3?
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (32 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt; Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-03  1:53   ` Sam Ravnborg
  2008-05-31 17:48 ` [Bug #10815] 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0 Rafael J. Wysocki
                   ` (16 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Sam Ravnborg, tvrtko.ursulin

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10798
Subject		: kbuild variable $(src) broken in 2.6.23-rc3?
Submitter	: tvrtko.ursulin <tvrtko.ursulin@sophos.com>
Date		: 2008-05-21 14:42 (11 days old)
References	: http://marc.info/?l=linux-kbuild&amp;m=121138246208259&amp;w=2
Handled-By	: Sam Ravnborg <sam@ravnborg.org>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10816] vt/fbcon: fix background color on line feed
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (41 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10765] iwl3945/mac80211: association times out since 2.6.26-rc1 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 20:39   ` thunder7
  2008-05-31 17:48 ` [Bug #10827] 2.6.26rc4 GFS2 oops Rafael J. Wysocki
                   ` (7 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Jan Engelhardt, thunder7

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10816
Subject		: vt/fbcon: fix background color on line feed
Submitter	: thunder7 <thunder7@xs4all.nl>
Date		: 2008-05-27 19:33 (5 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp;w=4
Handled-By	: Jan Engelhardt <jengelh@medozas.de>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121199453010047&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10794] mips: CONF_CM_DEFAULT build error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (48 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10792] mips/kernel/traps.c build error Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #9791] Clock is running too fast^Wslow using acpi_pm clocksource Rafael J. Wysocki
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Adrian Bunk, Atsushi Nemoto, Chris Dearman, Ralf Baechle

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10794
Subject		: mips: CONF_CM_DEFAULT build error
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-25 10:11 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/168



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10795] MIPS SEAD compile fix
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (35 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10823] stuck localhost TCP connections, v2.6.26-rc3+ Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-01 17:30   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10762] ocfs2: rename user_stack{,_ops} Rafael J. Wysocki
                   ` (13 subsequent siblings)
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10795
Subject		: MIPS SEAD compile fix
Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
Date		: 2008-05-25 11:10 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/178
Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
Patch		: http://lkml.org/lkml/2008/5/25/178



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10799] sky2 general protection fault
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (38 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10760] PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10761] hackbench regression with 2.6.26-rc2 on tulsa machine Rafael J. Wysocki
                   ` (10 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Jeff Garzik, Jesse Brandeburg, Nicolas Mailhot, Stephen Hemminger

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10799
Subject		: sky2 general protection fault
Submitter	: Nicolas Mailhot <Nicolas.Mailhot@LaPoste.net>
Date		: 2008-05-26 11:05 (6 days old)



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10787] pcie hotplug bootup crash fix
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (30 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt; Rafael J. Wysocki
                   ` (18 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Ingo Molnar

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10787
Subject		: pcie hotplug bootup crash fix
Submitter	: Ingo Molnar <mingo@elte.hu>
Date		: 2008-05-24 16:58 (8 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121164842212038&amp;w=4
Handled-By	: Ingo Molnar <mingo@elte.hu>
Patch		: http://marc.info/?l=linux-kernel&amp;m=121164842212038&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10765] iwl3945/mac80211: association times out since 2.6.26-rc1
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (40 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10761] hackbench regression with 2.6.26-rc2 on tulsa machine Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10816] vt/fbcon: fix background color on line feed Rafael J. Wysocki
                   ` (8 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Johannes Berg, Michael S. Tsirkin, Zhu Yi

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10765
Subject		: iwl3945/mac80211: association times out since 2.6.26-rc1
Submitter	: Michael S. Tsirkin <m.s.tsirkin@gmail.com>
Date		: 2008-05-20 22:46 (12 days old)
Handled-By	: Zhu Yi <yi.zhu@intel.com>
		  Johannes Berg <johannes@sipsolutions.net>
Patch		: http://article.gmane.org/gmane.linux.kernel.wireless.general/15177



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10786] 2.6.26-rc3 64bit SMP does not boot on J5600
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (25 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10830] two different oopses with 2.6.26-rc4 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10828] [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error Rafael J. Wysocki
                   ` (23 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Domenico Andreoli

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10786
Subject		: 2.6.26-rc3 64bit SMP does not boot on J5600
Submitter	: Domenico Andreoli <cavokz@gmail.com>
Date		: 2008-05-22 16:14 (10 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121147328028081&amp;w=4



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10792] mips/kernel/traps.c build error
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (47 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10825] appletouch after wakeup Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-06-03 18:40   ` Adrian Bunk
  2008-05-31 17:48 ` [Bug #10794] mips: CONF_CM_DEFAULT " Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #9791] Clock is running too fast^Wslow using acpi_pm clocksource Rafael J. Wysocki
  50 siblings, 1 reply; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10792
Subject		: mips/kernel/traps.c build error
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-25 09:48 (7 days old)
References	: http://lkml.org/lkml/2008/5/25/158
Patch		:  in the mips tree



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10762] ocfs2: rename user_stack{,_ops}
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (36 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10795] MIPS SEAD compile fix Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10760] PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3 Rafael J. Wysocki
                   ` (12 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Adrian Bunk

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10762
Subject		: ocfs2: rename user_stack{,_ops}
Submitter	: Adrian Bunk <bunk@kernel.org>
Date		: 2008-05-20 16:01 (12 days old)
References	: http://lkml.org/lkml/2008/5/20/603
		  http://marc.info/?l=linux-kernel&amp;m=121166610504166&amp;w=4
Handled-By	: Adrian Bunk <bunk@kernel.org>
Patch		: http://lkml.org/lkml/2008/5/20/603



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10764] some serial configurations are now broken
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (23 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530 Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10830] two different oopses with 2.6.26-rc4 Rafael J. Wysocki
                   ` (25 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Bryan Wu, Javier Herrero, Russell King

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10764
Subject		: some serial configurations are now broken
Submitter	: Russell King <rmk+lkml@arm.linux.org.uk>
Date		: 2008-05-20 7:35 (12 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121126931810706&amp;w=2
Handled-By	: Javier Herrero <jherrero@hvsistemas.es>
		  Russell King <rmk+lkml@arm.linux.org.uk>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10760] PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (37 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10762] ocfs2: rename user_stack{,_ops} Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10799] sky2 general protection fault Rafael J. Wysocki
                   ` (11 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Matthew Wilcox, Ryan Hope

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10760
Subject		: PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3
Submitter	: Ryan Hope <rmh3093@gmail.com>
Date		: 2008-05-19 17:47 (13 days old)
References	: http://marc.info/?l=linux-pci&amp;m=121121926401755&amp;w=2
Handled-By	: Matthew Wilcox <matthew@wil.cx>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* [Bug #10761] hackbench regression with 2.6.26-rc2 on tulsa machine
  2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
                   ` (39 preceding siblings ...)
  2008-05-31 17:48 ` [Bug #10799] sky2 general protection fault Rafael J. Wysocki
@ 2008-05-31 17:48 ` Rafael J. Wysocki
  2008-05-31 17:48 ` [Bug #10765] iwl3945/mac80211: association times out since 2.6.26-rc1 Rafael J. Wysocki
                   ` (9 subsequent siblings)
  50 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 17:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Ingo Molnar, Mike Galbraith, Peter Zijlstra, Zhang, Yanmin

This message has been generated automatically as a part of a report
of recent regressions.

The following bug entry is on the current list of known regressions
from 2.6.25.  Please verify if it still should be listed.


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10761
Subject		: hackbench regression with 2.6.26-rc2 on tulsa machine
Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Date		: 2008-05-20 8:09 (12 days old)
References	: http://marc.info/?l=linux-kernel&amp;m=121127121813708&amp;w=2
Handled-By	: Mike Galbraith <efault@gmx.de>



^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 17:48 ` [Bug #10825] appletouch after wakeup Rafael J. Wysocki
@ 2008-05-31 18:30   ` Oliver Neukum
  2008-05-31 19:53     ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-05-31 18:30 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Justin Mattock

Am Samstag, 31. Mai 2008 19:48:06 schrieb Rafael J. Wysocki:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

AFAIK it is current and should be listed.

	Regards
		Oliver


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10634] volanoMark regression with kernel 2.6.26-rc1
  2008-05-31 17:48 ` [Bug #10634] volanoMark regression with kernel 2.6.26-rc1 Rafael J. Wysocki
@ 2008-05-31 19:02   ` Dhaval Giani
  2008-06-02  4:37     ` Zhang, Yanmin
  0 siblings, 1 reply; 105+ messages in thread
From: Dhaval Giani @ 2008-05-31 19:02 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Ingo Molnar, Peter Zijlstra,
	Srivatsa Vaddagiri, Zhang, Yanmin

On Sat, May 31, 2008 at 07:48:05PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10634
> Subject		: volanoMark regression with kernel 2.6.26-rc1
> Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
> Date		: 2008-05-06 2:06 (26 days old)
> References	: http://marc.info/?l=linux-kernel&amp;m=121003968414287&amp;w=2
> Handled-By	: Dhaval Giani <dhaval@linux.vnet.ibm.com>
> 		  Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
> 		  Ingo Molnar <mingo@elte.hu>
> 		  Peter Zijlstra <a.p.zijlstra@chello.nl>
> Patch		: http://marc.info/?l=linux-kernel&amp;m=121015292616788&amp;w=2
> 

Should have been fixed with 6363ca57c76b7b83639ca8c83fc285fa26a7880e

Yanmin, could you confirm please?
-- 
regards,
Dhaval

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 18:30   ` Oliver Neukum
@ 2008-05-31 19:53     ` Justin Mattock
  2008-05-31 21:25       ` Oliver Neukum
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-05-31 19:53 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sat, May 31, 2008 at 6:30 PM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Samstag, 31. Mai 2008 19:48:06 schrieb Rafael J. Wysocki:
>> This message has been generated automatically as a part of a report
>> of recent regressions.
>>
>> The following bug entry is on the current list of known regressions
>> from 2.6.25.  Please verify if it still should be listed.
>
> AFAIK it is current and should be listed.
>
>        Regards
>                Oliver
>
>

I agree, right now I upgraded to the latest git on thursday, and
performed a suspend to see if it would appear, but nothing.
I did notice the same error while doing a reboot, and noticed
appletouch was motionless until I removed and inserted the module back
in.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10724] ACPI : EC: GPE
  2008-05-31 17:48 ` [Bug #10724] ACPI : EC: GPE Rafael J. Wysocki
@ 2008-05-31 19:54   ` Justin Mattock
  0 siblings, 0 replies; 105+ messages in thread
From: Justin Mattock @ 2008-05-31 19:54 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 5:48 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
>
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
>
>
> Bug-Entry       : http://bugzilla.kernel.org/show_bug.cgi?id=10724
> Subject         : ACPI : EC: GPE
> Submitter       : Justin Mattock <justinmattock@gmail.com>
> Date            : 2008-05-16 6:17 (16 days old)
> References      : http://marc.info/?l=linux-kernel&amp;m=121091875711824&amp;w=4
>                  http://lkml.org/lkml/2008/5/18/168
>                  http://lkml.org/lkml/2008/5/25/195
>                  http://lkml.org/lkml/2008/5/25/195
>
>
>

I'm still seeing this message with 2.6.26-rc4. or latest git pulled on thursday.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10493] mips BCM47XX compile error
  2008-05-31 17:44 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
@ 2008-05-31 20:09   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-05-31 20:09 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 07:44:39PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10493
> Subject		: mips BCM47XX compile error
> Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
> Date		: 2008-04-20 17:07 (42 days old)
> References	: http://lkml.org/lkml/2008/4/20/34
> 		  http://lkml.org/lkml/2008/5/12/30
> 		  http://lkml.org/lkml/2008/5/18/131

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
  2008-05-31 17:48 ` [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt; Rafael J. Wysocki
@ 2008-05-31 20:09   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-05-31 20:09 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 07:48:06PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10841
> Subject		: asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt;
> Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
> Date		: 2008-05-31 07:29 (1 days old)
> References	: http://lkml.org/lkml/2008/5/31/87
> Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
> Patch		: http://lkml.org/lkml/2008/5/31/87

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10816] vt/fbcon: fix background color on line feed
  2008-05-31 17:48 ` [Bug #10816] vt/fbcon: fix background color on line feed Rafael J. Wysocki
@ 2008-05-31 20:39   ` thunder7
  2008-05-31 22:37     ` Rafael J. Wysocki
  0 siblings, 1 reply; 105+ messages in thread
From: thunder7 @ 2008-05-31 20:39 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Jan Engelhardt, thunder7

From: Rafael J. Wysocki <rjw@sisk.pl>
Date: Sat, May 31, 2008 at 07:48:06PM +0200
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10816
> Subject		: vt/fbcon: fix background color on line feed
> Submitter	: thunder7 <thunder7@xs4all.nl>
> Date		: 2008-05-27 19:33 (5 days old)
> References	: http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp;w=4
> Handled-By	: Jan Engelhardt <jengelh@medozas.de>
> Patch		: http://marc.info/?l=linux-kernel&amp;m=121199453010047&amp;w=4
> 
No, this regression should be unlisted, as I've tested this patch and it
fixes the regression.

Kind regards,
Jurriaan

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 19:53     ` Justin Mattock
@ 2008-05-31 21:25       ` Oliver Neukum
  2008-05-31 22:10         ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-05-31 21:25 UTC (permalink / raw)
  To: Justin Mattock; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

Am Samstag, 31. Mai 2008 21:53:16 schrieb Justin Mattock:
> On Sat, May 31, 2008 at 6:30 PM, Oliver Neukum <oliver@neukum.org> wrote:
> > Am Samstag, 31. Mai 2008 19:48:06 schrieb Rafael J. Wysocki:
> >> This message has been generated automatically as a part of a report
> >> of recent regressions.
> >>
> >> The following bug entry is on the current list of known regressions
> >> from 2.6.25.  Please verify if it still should be listed.
> >
> > AFAIK it is current and should be listed.
> >
> >        Regards
> >                Oliver
> >
> >
> 
> I agree, right now I upgraded to the latest git on thursday, and
> performed a suspend to see if it would appear, but nothing.
> I did notice the same error while doing a reboot, and noticed
> appletouch was motionless until I removed and inserted the module back
> in.
> regards;
> 

Can you please add your device to the quirk lis in drivers/usb/core/quirks.c
with USB_QUIRK_RESET_RESUME and retest?

	Regards
		Oliver


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 21:25       ` Oliver Neukum
@ 2008-05-31 22:10         ` Justin Mattock
  2008-05-31 23:21           ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-05-31 22:10 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sat, May 31, 2008 at 9:25 PM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Samstag, 31. Mai 2008 21:53:16 schrieb Justin Mattock:
>> On Sat, May 31, 2008 at 6:30 PM, Oliver Neukum <oliver@neukum.org> wrote:
>> > Am Samstag, 31. Mai 2008 19:48:06 schrieb Rafael J. Wysocki:
>> >> This message has been generated automatically as a part of a report
>> >> of recent regressions.
>> >>
>> >> The following bug entry is on the current list of known regressions
>> >> from 2.6.25.  Please verify if it still should be listed.
>> >
>> > AFAIK it is current and should be listed.
>> >
>> >        Regards
>> >                Oliver
>> >
>> >
>>
>> I agree, right now I upgraded to the latest git on thursday, and
>> performed a suspend to see if it would appear, but nothing.
>> I did notice the same error while doing a reboot, and noticed
>> appletouch was motionless until I removed and inserted the module back
>> in.
>> regards;
>>
>
> Can you please add your device to the quirk lis in drivers/usb/core/quirks.c
> with USB_QUIRK_RESET_RESUME and retest?
>
>        Regards
>                Oliver
>
>

Sure; I just need to figure out what the vendor ID.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791'
  2008-05-31 17:48 ` [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791' Rafael J. Wysocki
@ 2008-05-31 22:27   ` Frans Pop
  0 siblings, 0 replies; 105+ messages in thread
From: Frans Pop @ 2008-05-31 22:27 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Rafael J. Wysocki

On Saturday 31 May 2008, Rafael J. Wysocki wrote:
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10632
> Subject	: [2.6.26-rc1] Output to console stops when booted without 'vga=791'
> Submitter	: Frans Pop <elendil@planet.nl> 
> Date		: 2008-05-05 13:51 (27 days old)
> References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/2080.html

This can be removed from the regressions list as the issue was already
present in earlier kernels. Sorry for not replying to earlier mails, but
I wanted to check that first and did not find the time to do so until now.

I'll try to find the origin of the issue and update bugzilla with that info.

Cheers,
FJP

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10816] vt/fbcon: fix background color on line feed
  2008-05-31 20:39   ` thunder7
@ 2008-05-31 22:37     ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-05-31 22:37 UTC (permalink / raw)
  To: thunder7; +Cc: Linux Kernel Mailing List, Jan Engelhardt

On Saturday, 31 of May 2008, thunder7@xs4all.nl wrote:
> From: Rafael J. Wysocki <rjw@sisk.pl>
> Date: Sat, May 31, 2008 at 07:48:06PM +0200
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 2.6.25.  Please verify if it still should be listed.
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10816
> > Subject		: vt/fbcon: fix background color on line feed
> > Submitter	: thunder7 <thunder7@xs4all.nl>
> > Date		: 2008-05-27 19:33 (5 days old)
> > References	: http://marc.info/?l=linux-kernel&amp;m=121191733218735&amp;w=4
> > Handled-By	: Jan Engelhardt <jengelh@medozas.de>
> > Patch		: http://marc.info/?l=linux-kernel&amp;m=121199453010047&amp;w=4
> > 
> No, this regression should be unlisted, as I've tested this patch and it
> fixes the regression.

Still, have the fix reached the Linus' tree already?

Rafael

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 22:10         ` Justin Mattock
@ 2008-05-31 23:21           ` Justin Mattock
  2008-06-01 10:40             ` Oliver Neukum
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-05-31 23:21 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sat, May 31, 2008 at 10:10 PM, Justin Mattock
<justinmattock@gmail.com> wrote:
> On Sat, May 31, 2008 at 9:25 PM, Oliver Neukum <oliver@neukum.org> wrote:
>> Am Samstag, 31. Mai 2008 21:53:16 schrieb Justin Mattock:
>>> On Sat, May 31, 2008 at 6:30 PM, Oliver Neukum <oliver@neukum.org> wrote:
>>> > Am Samstag, 31. Mai 2008 19:48:06 schrieb Rafael J. Wysocki:
>>> >> This message has been generated automatically as a part of a report
>>> >> of recent regressions.
>>> >>
>>> >> The following bug entry is on the current list of known regressions
>>> >> from 2.6.25.  Please verify if it still should be listed.
>>> >
>>> > AFAIK it is current and should be listed.
>>> >
>>> >        Regards
>>> >                Oliver
>>> >
>>> >
>>>
>>> I agree, right now I upgraded to the latest git on thursday, and
>>> performed a suspend to see if it would appear, but nothing.
>>> I did notice the same error while doing a reboot, and noticed
>>> appletouch was motionless until I removed and inserted the module back
>>> in.
>>> regards;
>>>
>>
>> Can you please add your device to the quirk lis in drivers/usb/core/quirks.c
>> with USB_QUIRK_RESET_RESUME and retest?
>>
>>        Regards
>>                Oliver
>>
>>
>
> Sure; I just need to figure out what the vendor ID.
> regards;
>
> --
> Justin P. Mattock
>

O.K. I seem to be confused with the sequence:
 List of quirky USB devices.  Please keep this list ordered by:
 * 	1) Vendor ID
 * 	2) Product ID
 * 	3) Class ID

should I use this:

 { ATP_DEVICE(0x021a, 0x05ac), .driver_info = USB_QUIRK_RESET_RESUME },

or this,

 { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },

can you verify for me so that I don't get things messed up.


-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10822] sky2 oops in 2.6.26-rc3
  2008-05-31 17:48 ` [Bug #10822] sky2 oops in 2.6.26-rc3 Rafael J. Wysocki
@ 2008-06-01  0:10   ` Mikael Pettersson
  2008-06-01  0:23     ` Arjan van de Ven
  0 siblings, 1 reply; 105+ messages in thread
From: Mikael Pettersson @ 2008-06-01  0:10 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Mikael Pettersson, Stephen Hemminger

On Sat, 31 May 2008 19:48:06 +0200 (CEST), Rafael J. Wysocki wrote:
>This message has been generated automatically as a part of a report
>of recent regressions.
>
>The following bug entry is on the current list of known regressions
>from 2.6.25.  Please verify if it still should be listed.
>
>
>Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=3D10822
>Subject		: sky2 oops in 2.6.26-rc3
>Submitter	: Mikael Pettersson <mikpe@it.uu.se>
>Date		: 2008-05-25 17:27 (7 days old)
>References	: http://marc.info/?l=3Dlinux-netdev&amp;m=3D121173650915153&amp=
>;w=3D4
>Handled-By	: Stephen Hemminger <shemminger@linux-foundation.org>

It's a one-off crash that hasn't happened since I reported it.
And the fact that it happended while I was running 2.6.26-rc3
may just be coincidental and/or caused by temperamental HW.

My intention was never to classify this as a regression, I
just wanted to report a failure data point in case a pattern
emerges.

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10822] sky2 oops in 2.6.26-rc3
  2008-06-01  0:10   ` Mikael Pettersson
@ 2008-06-01  0:23     ` Arjan van de Ven
  2008-06-05 20:54       ` Rafael J. Wysocki
  0 siblings, 1 reply; 105+ messages in thread
From: Arjan van de Ven @ 2008-06-01  0:23 UTC (permalink / raw)
  To: Mikael Pettersson
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Mikael Pettersson,
	Stephen Hemminger

On Sun, 1 Jun 2008 02:10:25 +0200
Mikael Pettersson <mikpe@it.uu.se> wrote:

> On Sat, 31 May 2008 19:48:06 +0200 (CEST), Rafael J. Wysocki wrote:
> >This message has been generated automatically as a part of a report
> >of recent regressions.
> >
> >The following bug entry is on the current list of known regressions
> >from 2.6.25.  Please verify if it still should be listed.
> >
> >
> >Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=3D10822
> >Subject		: sky2 oops in 2.6.26-rc3
> >Submitter	: Mikael Pettersson <mikpe@it.uu.se>
> >Date		: 2008-05-25 17:27 (7 days old)
> >References	:
> >http://marc.info/?l=3Dlinux-netdev&amp;m=3D121173650915153&amp= ;w=3D4
> >Handled-By	: Stephen Hemminger
> ><shemminger@linux-foundation.org>
> 
> It's a one-off crash that hasn't happened since I reported it.
> And the fact that it happended while I was running 2.6.26-rc3
> may just be coincidental and/or caused by temperamental HW.
> 
> My intention was never to classify this as a regression, I
> just wanted to report a failure data point in case a pattern
> emerges.

http://www.kerneloops.org/search.php?search=sky2_mac_int

shows that it happened around 2.6.23-rc1 era once as well...
but not more than that.

That almost makes it look like a hw issue, and very unlikely as a
regression.

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-05-31 17:48 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
@ 2008-06-01  0:45   ` Gabriel C
  2008-06-05 21:11     ` Rafael J. Wysocki
  0 siblings, 1 reply; 105+ messages in thread
From: Gabriel C @ 2008-06-01  0:45 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Ingo Molnar, Peter Zijlstra,
	Peter Zijlstra

Rafael J. Wysocki wrote:

> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.


No

> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
> Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
> Submitter	: Gabriel C <nix.or.die@googlemail.com>
> Date		: 2008-05-08 00:26 (24 days old)
> References	: http://lkml.org/lkml/2008/5/7/352
> Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
> 		  Peter Zijlstra <peterz@infradead.org>
> Patch		: http://bugzilla.kernel.org/show_bug.cgi?id=10648#c3
> 
> 


This problem is fixed in linus tree by a381759d6ad5c5dea5a981918e0b4493e9b66ac7

Gabriel




^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10613] BIOS bug, APIC version is 0 for CPU#0!
  2008-05-31 17:48 ` [Bug #10613] BIOS bug, APIC version is 0 for CPU#0! Rafael J. Wysocki
@ 2008-06-01  0:49   ` Gabriel C
  2008-06-01  0:54     ` Yinghai Lu
  0 siblings, 1 reply; 105+ messages in thread
From: Gabriel C @ 2008-06-01  0:49 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Yinghai Lu

Rafael J. Wysocki wrote:

> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10613
> Subject		: BIOS bug, APIC version is 0 for CPU#0!
> Submitter	: Gabriel C <nix.or.die@googlemail.com>
> Date		: 2008-05-03 15:11 (29 days old)
> References	: http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/1258.html
> Handled-By	: Yinghai Lu <yhlu.kernel@gmail.com>
> Patch		: http://lkml.org/lkml/2008/5/22/493
> 
> 


Ohh I didn't saw that patch :|

I try to find the time to test it tomorrow.


Gabriel

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10613] BIOS bug, APIC version is 0 for CPU#0!
  2008-06-01  0:49   ` Gabriel C
@ 2008-06-01  0:54     ` Yinghai Lu
  0 siblings, 0 replies; 105+ messages in thread
From: Yinghai Lu @ 2008-06-01  0:54 UTC (permalink / raw)
  To: Gabriel C, Ingo Molnar, Andrew Morton
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sat, May 31, 2008 at 5:49 PM, Gabriel C <nix.or.die@googlemail.com> wrote:
> Rafael J. Wysocki wrote:
>
>> This message has been generated automatically as a part of a report
>> of recent regressions.
>>
>> The following bug entry is on the current list of known regressions
>> from 2.6.25.  Please verify if it still should be listed.
>>
>>
>> Bug-Entry     : http://bugzilla.kernel.org/show_bug.cgi?id=10613
>> Subject               : BIOS bug, APIC version is 0 for CPU#0!
>> Submitter     : Gabriel C <nix.or.die@googlemail.com>
>> Date          : 2008-05-03 15:11 (29 days old)
>> References    : http://www.ussg.iu.edu/hypermail/linux/kernel/0805.0/1258.html
>> Handled-By    : Yinghai Lu <yhlu.kernel@gmail.com>
>> Patch         : http://lkml.org/lkml/2008/5/22/493
>>
>>
>
>
> Ohh I didn't saw that patch :|
>
> I try to find the time to test it tomorrow.

please use
http://lkml.org/lkml/2008/5/22/506
instead.

and it is in tip/x86/urgent

YH

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-05-31 23:21           ` Justin Mattock
@ 2008-06-01 10:40             ` Oliver Neukum
  2008-06-01 17:20               ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-06-01 10:40 UTC (permalink / raw)
  To: Justin Mattock; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },

This one.

	Regards
		Oliver

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 10:40             ` Oliver Neukum
@ 2008-06-01 17:20               ` Justin Mattock
  2008-06-01 18:25                 ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-06-01 17:20 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sun, Jun 1, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
>>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
>
> This one.
>
>        Regards
>                Oliver
>

Cool, I'll give it a go.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10795] MIPS SEAD compile fix
  2008-05-31 17:48 ` [Bug #10795] MIPS SEAD compile fix Rafael J. Wysocki
@ 2008-06-01 17:30   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-06-01 17:30 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 07:48:06PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10795
> Subject		: MIPS SEAD compile fix
> Submitter	: Adrian Bunk <adrian.bunk@movial.fi>
> Date		: 2008-05-25 11:10 (7 days old)
> References	: http://lkml.org/lkml/2008/5/25/178
> Handled-By	: Adrian Bunk <adrian.bunk@movial.fi>
> Patch		: http://lkml.org/lkml/2008/5/25/178

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 17:20               ` Justin Mattock
@ 2008-06-01 18:25                 ` Justin Mattock
  2008-06-01 18:29                   ` Oliver Neukum
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-06-01 18:25 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sun, Jun 1, 2008 at 5:20 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> On Sun, Jun 1, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
>> Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
>>>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
>>
>> This one.
>>
>>        Regards
>>                Oliver
>>
>
> Cool, I'll give it a go.
> regards;
>
> --
> Justin P. Mattock
>

gripes; It seems appletouch is still tripping out upon wakeup.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 18:25                 ` Justin Mattock
@ 2008-06-01 18:29                   ` Oliver Neukum
  2008-06-01 19:37                     ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-06-01 18:29 UTC (permalink / raw)
  To: Justin Mattock; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

Am Sonntag, 1. Juni 2008 20:25:03 schrieb Justin Mattock:
> On Sun, Jun 1, 2008 at 5:20 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> > On Sun, Jun 1, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
> >> Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
> >>>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
> >>
> >> This one.
> >>
> >>        Regards
> >>                Oliver
> >>
> >
> > Cool, I'll give it a go.
> > regards;
> >
> > --
> > Justin P. Mattock
> >
> 
> gripes; It seems appletouch is still tripping out upon wakeup.
> regards;
> 

Please also apply the patch from the following link:
https://bugzilla.novell.com/attachment.cgi?id=213908

	Regards
		Oliver


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 18:29                   ` Oliver Neukum
@ 2008-06-01 19:37                     ` Justin Mattock
  2008-06-01 23:09                       ` Justin Mattock
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-06-01 19:37 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Sonntag, 1. Juni 2008 20:25:03 schrieb Justin Mattock:
>> On Sun, Jun 1, 2008 at 5:20 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>> > On Sun, Jun 1, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
>> >> Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
>> >>>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
>> >>
>> >> This one.
>> >>
>> >>        Regards
>> >>                Oliver
>> >>
>> >
>> > Cool, I'll give it a go.
>> > regards;
>> >
>> > --
>> > Justin P. Mattock
>> >
>>
>> gripes; It seems appletouch is still tripping out upon wakeup.
>> regards;
>>
>
> Please also apply the patch from the following link:
> https://bugzilla.novell.com/attachment.cgi?id=213908
>
>        Regards
>                Oliver
>
>

Alright; I'll let you know what happens.
regards;


-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 19:37                     ` Justin Mattock
@ 2008-06-01 23:09                       ` Justin Mattock
  2008-06-02  7:15                         ` Oliver Neukum
  0 siblings, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-06-01 23:09 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: Rafael J. Wysocki, Linux Kernel Mailing List

On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
>> Am Sonntag, 1. Juni 2008 20:25:03 schrieb Justin Mattock:
>>> On Sun, Jun 1, 2008 at 5:20 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>>> > On Sun, Jun 1, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
>>> >> Am Sonntag, 1. Juni 2008 01:21:44 schrieb Justin Mattock:
>>> >>>  { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
>>> >>
>>> >> This one.
>>> >>
>>> >>        Regards
>>> >>                Oliver
>>> >>
>>> >
>>> > Cool, I'll give it a go.
>>> > regards;
>>> >
>>> > --
>>> > Justin P. Mattock
>>> >
>>>
>>> gripes; It seems appletouch is still tripping out upon wakeup.
>>> regards;
>>>
>>
>> Please also apply the patch from the following link:
>> https://bugzilla.novell.com/attachment.cgi?id=213908
>>
>>        Regards
>>                Oliver
>>
>>
>
> Alright; I'll let you know what happens.
> regards;
>
>
> --
> Justin P. Mattock
>

O.K. sorry for the slow response, "I feel asleep", anyways I applied
the patch and for some reason received a failed
with it, So after going in and manually putting the threads in, the
kernel compiled fine,
then performing a suspend I did not receive this message from
appletouch. although I did receive:


[  232.270737] BUG: unable to handle kernel paging request at 6b6b6c6b
[  232.270743] IP: [<c013f96d>] module_put+0x12/0x2b
[  232.270750] *pde = 00000000
[  232.270753] Oops: 0002 [#1] SMP
[  232.270757] Modules linked in: hci_usb cpufreq_ondemand
cpufreq_performance cpufreq_powersave rfcomm hidp l2cap bluetooth fan
ipmi_watchdog ipmi_msghandler uinput wlan_tkip ieee80211_crypt_tkip
ieee80211_crypt arpt_mangle arptable_filter arp_tables
nf_conntrack_ipv4 nf_conntrack iptable_mangle iptable_filter ip_tables
x_tables intelfb i2c_i810 i2c_algo_bit coretemp eeprom acpi_cpufreq
fglrx(P) applesmc joydev uvcvideo appletouch wlan_scan_sta
ath_rate_sample firewire_ohci firewire_core snd_hda_intel ath_pci
snd_pcm wlan ohci1394 intel_agp evdev ath_hal(P) snd_timer ieee1394
pata_acpi thermal ehci_hcd uhci_hcd snd_page_alloc snd_hwdep agpgart
video button processor
[  232.270800]
[  232.270802] Pid: 2690, comm: btdelconn Tainted: P
(2.6.26-rc4-00033-g5463508 #4)
[  232.270805] EIP: 0060:[<c013f96d>] EFLAGS: 00010246 CPU: 0
[  232.270808] EIP is at module_put+0x12/0x2b
[  232.270810] EAX: 00000000 EBX: 00000000 ECX: c020f49b EDX: 6b6b6b6b
[  232.270812] ESI: f4858830 EDI: f572aab8 EBP: f4893f78 ESP: f4893f78
[  232.270815]  DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
[  232.270817] Process btdelconn (pid: 2690, ti=f4892000 task=f7fe6220
task.ti=f4892000)
[  232.270819] Stack: f4893f8c f8bcb705 f572aaac f5b8bcb0 f572aaa8
f4893fa8 c012f90d f5b8bcc0
[  232.270826]        f8bcb6a6 f5b8bcb0 f4893fb0 f5b8bcc8 f4893fd0
c0130119 00000000 f7fe6220
[  232.270832]        c01324cd f4893fbc f4893fbc f5b8bcb0 c0130063
00000000 f4893fe0 c013240d
[  232.270838] Call Trace:
[  232.270842]  [<f8bcb705>] ? del_conn+0x5f/0x64 [bluetooth]
[  232.270854]  [<c012f90d>] ? run_workqueue+0x78/0xfb
[  232.270859]  [<f8bcb6a6>] ? del_conn+0x0/0x64 [bluetooth]
[  232.270869]  [<c0130119>] ? worker_thread+0xb6/0xc2
[  232.270873]  [<c01324cd>] ? autoremove_wake_function+0x0/0x30
[  232.270878]  [<c0130063>] ? worker_thread+0x0/0xc2
[  232.270882]  [<c013240d>] ? kthread+0x3b/0x62
[  232.270885]  [<c01323d2>] ? kthread+0x0/0x62
[  232.270889]  [<c01044ef>] ? kernel_thread_helper+0x7/0x10
[  232.270896]  =======================
[  232.270897] Code: 84 00 00 00 e8 45 fa 0c 00 89 f8 e8 3e fa 0c 00
5a 89 f0 59 5b 5e 5f 5d c3 55 85 c0 89 e5 89 c2 74 20 64 a1 04 d0 50
c0 c1 e0 06 <ff> 8c 02 00 01 00 00 83 3a 02 75 0b 8b 82 88 01 00 00 e8
00 a6
[  232.270932] EIP: [<c013f96d>] module_put+0x12/0x2b SS:ESP 0068:f4893f78
[  232.270937] ---[ end trace c436afcb6083d3a0 ]---
[  232.297190] =============================================================================
[  232.297190] BUG kmalloc-2048: Poison overwritten
[  232.297190] -----------------------------------------------------------------------------
[  232.297190]
[  232.297190] INFO: 0xf4858848-0xf4858848. First byte 0x6a instead of 0x6b
[  232.297190] INFO: Allocated in hci_alloc_dev+0x15/0x51 [bluetooth]
age=19928 cpu=0 pid=2815
[  232.297190] INFO: Freed in bt_release+0xe/0x10 [bluetooth] age=1
cpu=0 pid=2690
[  232.297190] INFO: Slab 0xc1690b00 objects=15 used=12 fp=0xf4858830
flags=0x400020c3
[  232.297190] INFO: Object 0xf4858830 @offset=2096 fp=0xf485b950
[  232.297190]
[  232.297190] Bytes b4 0xf4858820:  10 0a 00 00 40 93 ff ff 5a 5a 5a
5a 5a 5a 5a 5a ....@.ÿÿZZZZZZZZ
[  232.297190]   Object 0xf4858830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf4858840:  6b 6b 6b 6b 6b 6b 6b 6b 6a 6b 6b
6b 6b 6b 6b 6b kkkkkkkkjkkkkkkk
[  232.297190]   Object 0xf4858850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf4858860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf4858870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf4858880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf4858890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]   Object 0xf48588a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[  232.297190]  Redzone 0xf4859030:  bb bb bb bb
              »»»»
[  232.297190]  Padding 0xf4859058:  5a 5a 5a 5a 5a 5a 5a 5a
              ZZZZZZZZ
[  232.297190] Pid: 1390, comm: knodemgrd_0 Tainted: P      D
2.6.26-rc4-00033-g5463508 #4
[  232.297190]  [<c016d1ab>] print_trailer+0xc8/0xd0
[  232.297190]  [<c016d226>] check_bytes_and_report+0x73/0x8f
[  232.297190]  [<c016d497>] check_object+0xa4/0x18c
[  232.297190]  [<c016e051>] __slab_alloc+0x387/0x45f
[  232.297190]  [<c016f08d>] __kmalloc+0x85/0xdb
[  232.297190]  [<f8ae935b>] ? hpsb_alloc_packet+0x17/0x51 [ieee1394]
[  232.297190]  [<c016d1d4>] ? check_bytes_and_report+0x21/0x8f
[  232.297190]  [<f8ae935b>] hpsb_alloc_packet+0x17/0x51 [ieee1394]
[  232.297190]  [<f8ae93ac>] create_reply_packet+0x17/0x77 [ieee1394]
[  232.297190]  [<f8ae97c6>] hpsb_packet_received+0x3ba/0x5db [ieee1394]
[  232.297190]  [<c016e089>] ? __slab_alloc+0x3bf/0x45f
[  232.297190]  [<f8ae9b29>] hpsb_send_packet+0x142/0x192 [ieee1394]
[  232.297190]  [<f8ae9bc3>] hpsb_send_packet_and_wait+0x31/0x47 [ieee1394]
[  232.297190]  [<f8aeac66>] hpsb_read+0x5d/0xb3 [ieee1394]
[  232.297190]  [<f8aed865>] nodemgr_bus_read+0x40/0x149 [ieee1394]
[  232.297190]  [<f8af0382>] csr1212_read_keyval+0x2c0/0x3be [ieee1394]
[  232.297190]  [<f8af0655>] csr1212_parse_csr+0x1d5/0x211 [ieee1394]
[  232.297190]  [<f8aee756>] nodemgr_host_thread+0x343/0x7b9 [ieee1394]
[  232.297190]  [<f8aee413>] ? nodemgr_host_thread+0x0/0x7b9 [ieee1394]
[  232.297190]  [<c013240d>] kthread+0x3b/0x62
[  232.297190]  [<c01323d2>] ? kthread+0x0/0x62
[  232.297190]  [<c01044ef>] kernel_thread_helper+0x7/0x10
[  232.297190]  =======================
[  232.297190] FIX kmalloc-2048: Restoring 0xf4858848-0xf4858848=0x6b
[  232.297190]
[  232.297190] FIX kmalloc-2048: Marking all objects used

This was after the second simultaneous suspend, then after this five
more simultaneous suspends without this error,
but am not hearing anything out of appletouch.
Thank you for the help, and the patch.
regards;
-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10634] volanoMark regression with kernel 2.6.26-rc1
  2008-05-31 19:02   ` Dhaval Giani
@ 2008-06-02  4:37     ` Zhang, Yanmin
  2008-06-05 21:11       ` Rafael J. Wysocki
  0 siblings, 1 reply; 105+ messages in thread
From: Zhang, Yanmin @ 2008-06-02  4:37 UTC (permalink / raw)
  To: Dhaval Giani
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Ingo Molnar,
	Peter Zijlstra, Srivatsa Vaddagiri


On Sun, 2008-06-01 at 00:32 +0530, Dhaval Giani wrote:
> On Sat, May 31, 2008 at 07:48:05PM +0200, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 2.6.25.  Please verify if it still should be listed.
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10634
> > Subject		: volanoMark regression with kernel 2.6.26-rc1
> > Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
> > Date		: 2008-05-06 2:06 (26 days old)
> > References	: http://marc.info/?l=linux-kernel&m=121003968414287&w=2
> > Handled-By	: Dhaval Giani <dhaval@linux.vnet.ibm.com>
> > 		  Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
> > 		  Ingo Molnar <mingo@elte.hu>
> > 		  Peter Zijlstra <a.p.zijlstra@chello.nl>
> > Patch		: http://marc.info/?l=linux-kernel&m=121015292616788&w=2
> > 
> 
> Should have been fixed with 6363ca57c76b7b83639ca8c83fc285fa26a7880e
> 
> Yanmin, could you confirm please?
Confirmed.

-yanmin


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-01 23:09                       ` Justin Mattock
@ 2008-06-02  7:15                         ` Oliver Neukum
  2008-06-02 12:44                           ` Bob Copeland
  2008-06-02 16:17                           ` Justin Mattock
  0 siblings, 2 replies; 105+ messages in thread
From: Oliver Neukum @ 2008-06-02  7:15 UTC (permalink / raw)
  To: Justin Mattock, Marcel Holtmann
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List

Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:

> >> Please also apply the patch from the following link:
> >> https://bugzilla.novell.com/attachment.cgi?id=213908

> O.K. sorry for the slow response, "I feel asleep", anyways I applied
> the patch and for some reason received a failed
> with it, So after going in and manually putting the threads in, the
> kernel compiled fine,
> then performing a suspend I did not receive this message from
> appletouch. although I did receive:

This comes from the bluetooth layer. I cannot see any connection
and suspect coincidence. Marcel?
 
> [  232.270737] BUG: unable to handle kernel paging request at 6b6b6c6b
> [  232.270743] IP: [<c013f96d>] module_put+0x12/0x2b
> [  232.270750] *pde = 00000000
> [  232.270753] Oops: 0002 [#1] SMP
> [  232.270757] Modules linked in: hci_usb cpufreq_ondemand
> cpufreq_performance cpufreq_powersave rfcomm hidp l2cap bluetooth fan
> ipmi_watchdog ipmi_msghandler uinput wlan_tkip ieee80211_crypt_tkip
> ieee80211_crypt arpt_mangle arptable_filter arp_tables
> nf_conntrack_ipv4 nf_conntrack iptable_mangle iptable_filter ip_tables
> x_tables intelfb i2c_i810 i2c_algo_bit coretemp eeprom acpi_cpufreq
> fglrx(P) applesmc joydev uvcvideo appletouch wlan_scan_sta
> ath_rate_sample firewire_ohci firewire_core snd_hda_intel ath_pci
> snd_pcm wlan ohci1394 intel_agp evdev ath_hal(P) snd_timer ieee1394
> pata_acpi thermal ehci_hcd uhci_hcd snd_page_alloc snd_hwdep agpgart
> video button processor
> [  232.270800]
> [  232.270802] Pid: 2690, comm: btdelconn Tainted: P
> (2.6.26-rc4-00033-g5463508 #4)
> [  232.270805] EIP: 0060:[<c013f96d>] EFLAGS: 00010246 CPU: 0
> [  232.270808] EIP is at module_put+0x12/0x2b
> [  232.270810] EAX: 00000000 EBX: 00000000 ECX: c020f49b EDX: 6b6b6b6b
> [  232.270812] ESI: f4858830 EDI: f572aab8 EBP: f4893f78 ESP: f4893f78
> [  232.270815]  DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
> [  232.270817] Process btdelconn (pid: 2690, ti=f4892000 task=f7fe6220
> task.ti=f4892000)
> [  232.270819] Stack: f4893f8c f8bcb705 f572aaac f5b8bcb0 f572aaa8
> f4893fa8 c012f90d f5b8bcc0
> [  232.270826]        f8bcb6a6 f5b8bcb0 f4893fb0 f5b8bcc8 f4893fd0
> c0130119 00000000 f7fe6220
> [  232.270832]        c01324cd f4893fbc f4893fbc f5b8bcb0 c0130063
> 00000000 f4893fe0 c013240d
> [  232.270838] Call Trace:
> [  232.270842]  [<f8bcb705>] ? del_conn+0x5f/0x64 [bluetooth]
> [  232.270854]  [<c012f90d>] ? run_workqueue+0x78/0xfb
> [  232.270859]  [<f8bcb6a6>] ? del_conn+0x0/0x64 [bluetooth]
> [  232.270869]  [<c0130119>] ? worker_thread+0xb6/0xc2
> [  232.270873]  [<c01324cd>] ? autoremove_wake_function+0x0/0x30
> [  232.270878]  [<c0130063>] ? worker_thread+0x0/0xc2
> [  232.270882]  [<c013240d>] ? kthread+0x3b/0x62
> [  232.270885]  [<c01323d2>] ? kthread+0x0/0x62
> [  232.270889]  [<c01044ef>] ? kernel_thread_helper+0x7/0x10
> [  232.270896]  =======================
> [  232.270897] Code: 84 00 00 00 e8 45 fa 0c 00 89 f8 e8 3e fa 0c 00
> 5a 89 f0 59 5b 5e 5f 5d c3 55 85 c0 89 e5 89 c2 74 20 64 a1 04 d0 50
> c0 c1 e0 06 <ff> 8c 02 00 01 00 00 83 3a 02 75 0b 8b 82 88 01 00 00 e8
> 00 a6
> [  232.270932] EIP: [<c013f96d>] module_put+0x12/0x2b SS:ESP 0068:f4893f78
> [  232.270937] ---[ end trace c436afcb6083d3a0 ]---
> [  232.297190] =============================================================================
> [  232.297190] BUG kmalloc-2048: Poison overwritten
> [  232.297190] -----------------------------------------------------------------------------
> [  232.297190]
> [  232.297190] INFO: 0xf4858848-0xf4858848. First byte 0x6a instead of 0x6b
> [  232.297190] INFO: Allocated in hci_alloc_dev+0x15/0x51 [bluetooth]
> age=19928 cpu=0 pid=2815
> [  232.297190] INFO: Freed in bt_release+0xe/0x10 [bluetooth] age=1
> cpu=0 pid=2690
> [  232.297190] INFO: Slab 0xc1690b00 objects=15 used=12 fp=0xf4858830
> flags=0x400020c3
> [  232.297190] INFO: Object 0xf4858830 @offset=2096 fp=0xf485b950
> [  232.297190]
> [  232.297190] Bytes b4 0xf4858820:  10 0a 00 00 40 93 ff ff 5a 5a 5a
> 5a 5a 5a 5a 5a ....@.ÿÿZZZZZZZZ
> [  232.297190]   Object 0xf4858830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf4858840:  6b 6b 6b 6b 6b 6b 6b 6b 6a 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkjkkkkkkk
> [  232.297190]   Object 0xf4858850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf4858860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf4858870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf4858880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf4858890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]   Object 0xf48588a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
> [  232.297190]  Redzone 0xf4859030:  bb bb bb bb
>               »»»»
> [  232.297190]  Padding 0xf4859058:  5a 5a 5a 5a 5a 5a 5a 5a
>               ZZZZZZZZ
> [  232.297190] Pid: 1390, comm: knodemgrd_0 Tainted: P      D
> 2.6.26-rc4-00033-g5463508 #4
> [  232.297190]  [<c016d1ab>] print_trailer+0xc8/0xd0
> [  232.297190]  [<c016d226>] check_bytes_and_report+0x73/0x8f
> [  232.297190]  [<c016d497>] check_object+0xa4/0x18c
> [  232.297190]  [<c016e051>] __slab_alloc+0x387/0x45f
> [  232.297190]  [<c016f08d>] __kmalloc+0x85/0xdb
> [  232.297190]  [<f8ae935b>] ? hpsb_alloc_packet+0x17/0x51 [ieee1394]
> [  232.297190]  [<c016d1d4>] ? check_bytes_and_report+0x21/0x8f
> [  232.297190]  [<f8ae935b>] hpsb_alloc_packet+0x17/0x51 [ieee1394]
> [  232.297190]  [<f8ae93ac>] create_reply_packet+0x17/0x77 [ieee1394]
> [  232.297190]  [<f8ae97c6>] hpsb_packet_received+0x3ba/0x5db [ieee1394]
> [  232.297190]  [<c016e089>] ? __slab_alloc+0x3bf/0x45f
> [  232.297190]  [<f8ae9b29>] hpsb_send_packet+0x142/0x192 [ieee1394]
> [  232.297190]  [<f8ae9bc3>] hpsb_send_packet_and_wait+0x31/0x47 [ieee1394]
> [  232.297190]  [<f8aeac66>] hpsb_read+0x5d/0xb3 [ieee1394]
> [  232.297190]  [<f8aed865>] nodemgr_bus_read+0x40/0x149 [ieee1394]
> [  232.297190]  [<f8af0382>] csr1212_read_keyval+0x2c0/0x3be [ieee1394]
> [  232.297190]  [<f8af0655>] csr1212_parse_csr+0x1d5/0x211 [ieee1394]
> [  232.297190]  [<f8aee756>] nodemgr_host_thread+0x343/0x7b9 [ieee1394]
> [  232.297190]  [<f8aee413>] ? nodemgr_host_thread+0x0/0x7b9 [ieee1394]
> [  232.297190]  [<c013240d>] kthread+0x3b/0x62
> [  232.297190]  [<c01323d2>] ? kthread+0x0/0x62
> [  232.297190]  [<c01044ef>] kernel_thread_helper+0x7/0x10
> [  232.297190]  =======================
> [  232.297190] FIX kmalloc-2048: Restoring 0xf4858848-0xf4858848=0x6b
> [  232.297190]
> [  232.297190] FIX kmalloc-2048: Marking all objects used
> 
> This was after the second simultaneous suspend, then after this five
> more simultaneous suspends without this error,
> but am not hearing anything out of appletouch.
> Thank you for the help, and the patch.

Is this a statistically significant number of tests? How often did you see
the appletouch problem? Can we consider this regression to be fixed by
this patch?

	Regards
		Oliver




^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10741] bug in `tty: BKL pushdown'?
  2008-05-31 17:48 ` [Bug #10741] bug in `tty: BKL pushdown'? Rafael J. Wysocki
@ 2008-06-02  8:13   ` Johannes Weiner
  2008-06-02  8:37     ` Rafael J. Wysocki
  0 siblings, 1 reply; 105+ messages in thread
From: Johannes Weiner @ 2008-06-02  8:13 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Alan Cox

Hi,

"Rafael J. Wysocki" <rjw@sisk.pl> writes:

> This message has been generated automatically as a part of a report
> of recent regressions.
>
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
>
>
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
> Subject		: bug in `tty: BKL pushdown'?
> Submitter	: Johannes Weiner <hannes@saeurebad.de>
> Date		: 2008-05-18 2:16 (14 days old)
> References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
> Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>

Bug still exists in Linus' current tree.

	Hannes

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10741] bug in `tty: BKL pushdown'?
  2008-06-02  8:13   ` Johannes Weiner
@ 2008-06-02  8:37     ` Rafael J. Wysocki
  2008-06-02  9:38       ` Johannes Weiner
  2008-06-02  9:40       ` Johannes Weiner
  0 siblings, 2 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-06-02  8:37 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: Linux Kernel Mailing List, Alan Cox

On Monday, 2 of June 2008, Johannes Weiner wrote:
> Hi,

Hi,
 
> "Rafael J. Wysocki" <rjw@sisk.pl> writes:
> 
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> >
> > The following bug entry is on the current list of known regressions
> > from 2.6.25.  Please verify if it still should be listed.
> >
> >
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
> > Subject		: bug in `tty: BKL pushdown'?
> > Submitter	: Johannes Weiner <hannes@saeurebad.de>
> > Date		: 2008-05-18 2:16 (14 days old)
> > References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
> > Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>
> 
> Bug still exists in Linus' current tree.

Thanks for the update.

Alan says it's a user space bug, though.

Rafael

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix
  2008-05-31 17:48 ` [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix Rafael J. Wysocki
@ 2008-06-02  9:16   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-06-02  9:16 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 07:48:06PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10829
> Subject		: sh/kernel/cpu/irq/intc-sh5.c build fix
> Submitter	: Adrian Bunk <bunk@kernel.org>
> Date		: 2008-05-29 15:06 (3 days old)
> References	: http://lkml.org/lkml/2008/5/29/492
> Handled-By	: Adrian Bunk <bunk@kernel.org>
> Patch		: http://lkml.org/lkml/2008/5/29/492

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] 105+ messages in thread

* Re: [Bug #10741] bug in `tty: BKL pushdown'?
  2008-06-02  8:37     ` Rafael J. Wysocki
@ 2008-06-02  9:38       ` Johannes Weiner
  2008-06-02  9:40       ` Johannes Weiner
  1 sibling, 0 replies; 105+ messages in thread
From: Johannes Weiner @ 2008-06-02  9:38 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Alan Cox

Hi,

"Rafael J. Wysocki" <rjw@sisk.pl> writes:

> On Monday, 2 of June 2008, Johannes Weiner wrote:
>> Hi,
>
> Hi,
>  
>> "Rafael J. Wysocki" <rjw@sisk.pl> writes:
>> 
>> > This message has been generated automatically as a part of a report
>> > of recent regressions.
>> >
>> > The following bug entry is on the current list of known regressions
>> > from 2.6.25.  Please verify if it still should be listed.
>> >
>> >
>> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
>> > Subject		: bug in `tty: BKL pushdown'?
>> > Submitter	: Johannes Weiner <hannes@saeurebad.de>
>> > Date		: 2008-05-18 2:16 (14 days old)
>> > References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
>> > Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>
>> 
>> Bug still exists in Linus' current tree.
>
> Thanks for the update.
>
> Alan says it's a user space bug, though.

Yeah, saw the bugzilla update.  I have no idea.  Crap.  Noone will ever
fix screen.

	Hannes

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10741] bug in `tty: BKL pushdown'?
  2008-06-02  8:37     ` Rafael J. Wysocki
  2008-06-02  9:38       ` Johannes Weiner
@ 2008-06-02  9:40       ` Johannes Weiner
  1 sibling, 0 replies; 105+ messages in thread
From: Johannes Weiner @ 2008-06-02  9:40 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Alan Cox

Hi,

"Rafael J. Wysocki" <rjw@sisk.pl> writes:

> On Monday, 2 of June 2008, Johannes Weiner wrote:
>> Hi,
>
> Hi,
>  
>> "Rafael J. Wysocki" <rjw@sisk.pl> writes:
>> 
>> > This message has been generated automatically as a part of a report
>> > of recent regressions.
>> >
>> > The following bug entry is on the current list of known regressions
>> > from 2.6.25.  Please verify if it still should be listed.
>> >
>> >
>> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10741
>> > Subject		: bug in `tty: BKL pushdown'?
>> > Submitter	: Johannes Weiner <hannes@saeurebad.de>
>> > Date		: 2008-05-18 2:16 (14 days old)
>> > References	: http://marc.info/?l=linux-kernel&amp;m=121107706506181&amp;w=4
>> > Handled-By	: Alan Cox <alan@lxorguk.ukuu.org.uk>
>> 
>> Bug still exists in Linus' current tree.
>
> Thanks for the update.
>
> Alan says it's a user space bug, though.

Alan could you hint me what to look for in screen?   What in the commit
I bisected could cause breakage for it?

Thanks,
	Hannes

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02  7:15                         ` Oliver Neukum
@ 2008-06-02 12:44                           ` Bob Copeland
  2008-06-02 13:10                             ` Oliver Neukum
  2008-06-02 16:17                           ` Justin Mattock
  1 sibling, 1 reply; 105+ messages in thread
From: Bob Copeland @ 2008-06-02 12:44 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: Justin Mattock, Marcel Holtmann, Rafael J. Wysocki,
	Linux Kernel Mailing List, Johannes Berg

On Mon, Jun 2, 2008 at 3:15 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
>> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
>
>> >> Please also apply the patch from the following link:
>> >> https://bugzilla.novell.com/attachment.cgi?id=213908
>
> Is this a statistically significant number of tests? How often did you see
> the appletouch problem? Can we consider this regression to be fixed by
> this patch?

[CCed Johannes since we discussed the original problem in a separate thread]

Oliver,

Is the RESET_RESUME quirk needed in addition to the Novell bugzilla patch?

I tried the bugzilla patch which fixed "mouse completely broken" after
resume, but the mouse now behaves strangely - it warps to random
positions whenever you remove your finger from the touchpad.  I did
not apply the quirk.

I also did not get an oops here.

-- 
Bob Copeland %% www.bobcopeland.com

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02 12:44                           ` Bob Copeland
@ 2008-06-02 13:10                             ` Oliver Neukum
  2008-06-02 14:06                               ` Bob Copeland
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-06-02 13:10 UTC (permalink / raw)
  To: Bob Copeland
  Cc: Justin Mattock, Marcel Holtmann, Rafael J. Wysocki,
	Linux Kernel Mailing List, Johannes Berg

Am Montag, 2. Juni 2008 14:44:41 schrieb Bob Copeland:
> On Mon, Jun 2, 2008 at 3:15 AM, Oliver Neukum <oliver@neukum.org> wrote:
> > Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
> >> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> >> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
> >
> >> >> Please also apply the patch from the following link:
> >> >> https://bugzilla.novell.com/attachment.cgi?id=213908
> >
> > Is this a statistically significant number of tests? How often did you see
> > the appletouch problem? Can we consider this regression to be fixed by
> > this patch?
> 
> [CCed Johannes since we discussed the original problem in a separate thread]
> 
> Oliver,
> 
> Is the RESET_RESUME quirk needed in addition to the Novell bugzilla patch?

You need both.

	Regards
		Oliver

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02 13:10                             ` Oliver Neukum
@ 2008-06-02 14:06                               ` Bob Copeland
  2008-06-02 14:40                                 ` Oliver Neukum
  0 siblings, 1 reply; 105+ messages in thread
From: Bob Copeland @ 2008-06-02 14:06 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: Justin Mattock, Marcel Holtmann, Rafael J. Wysocki,
	Linux Kernel Mailing List, Johannes Berg

On Mon, Jun 2, 2008 at 9:10 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Montag, 2. Juni 2008 14:44:41 schrieb Bob Copeland:
>> On Mon, Jun 2, 2008 at 3:15 AM, Oliver Neukum <oliver@neukum.org> wrote:
>> > Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
>> >> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>> >> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
>> >
>> >> >> Please also apply the patch from the following link:
>> >> >> https://bugzilla.novell.com/attachment.cgi?id=213908
>> >
>> > Is this a statistically significant number of tests? How often did you see
>> > the appletouch problem? Can we consider this regression to be fixed by
>> > this patch?
>>
>> [CCed Johannes since we discussed the original problem in a separate thread]
>>
>> Oliver,
>>
>> Is the RESET_RESUME quirk needed in addition to the Novell bugzilla patch?
>
> You need both.

Yup, I booted the wrong kernel before, sorry for that.  I'll test again shortly.

Just curious, why is the reset quirk is needed since <= 2.6.25 worked fine?

-- 
Bob Copeland %% www.bobcopeland.com

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02 14:06                               ` Bob Copeland
@ 2008-06-02 14:40                                 ` Oliver Neukum
  2008-06-02 14:55                                   ` Bob Copeland
  0 siblings, 1 reply; 105+ messages in thread
From: Oliver Neukum @ 2008-06-02 14:40 UTC (permalink / raw)
  To: Bob Copeland
  Cc: Justin Mattock, Marcel Holtmann, Rafael J. Wysocki,
	Linux Kernel Mailing List, Johannes Berg

Am Montag, 2. Juni 2008 16:06:51 schrieb Bob Copeland:
> Just curious, why is the reset quirk is needed since <= 2.6.25 worked fine?

I don't know. I suspect it is related to timing and you are just vastly
unlikelier to hit the issue under < 2.6.25.

	Regards
		Oliver


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02 14:40                                 ` Oliver Neukum
@ 2008-06-02 14:55                                   ` Bob Copeland
  0 siblings, 0 replies; 105+ messages in thread
From: Bob Copeland @ 2008-06-02 14:55 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: Justin Mattock, Marcel Holtmann, Rafael J. Wysocki,
	Linux Kernel Mailing List, Johannes Berg

On Mon, Jun 2, 2008 at 10:40 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Montag, 2. Juni 2008 16:06:51 schrieb Bob Copeland:
>> Just curious, why is the reset quirk is needed since <= 2.6.25 worked fine?
>
> I don't know. I suspect it is related to timing and you are just vastly
> unlikelier to hit the issue under < 2.6.25.

Yeah that jives with my unsuccessful bisection attempts.

At any rate, I retested and the reset quirk does indeed fix the regression for
me as well.  Thanks!

-- 
Bob Copeland %% www.bobcopeland.com

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02  7:15                         ` Oliver Neukum
  2008-06-02 12:44                           ` Bob Copeland
@ 2008-06-02 16:17                           ` Justin Mattock
  2008-06-02 17:20                             ` Justin Mattock
  1 sibling, 1 reply; 105+ messages in thread
From: Justin Mattock @ 2008-06-02 16:17 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: Marcel Holtmann, Rafael J. Wysocki, Linux Kernel Mailing List

On Mon, Jun 2, 2008 at 7:15 AM, Oliver Neukum <oliver@neukum.org> wrote:
> Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
>> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
>
>> >> Please also apply the patch from the following link:
>> >> https://bugzilla.novell.com/attachment.cgi?id=213908
>
>> O.K. sorry for the slow response, "I feel asleep", anyways I applied
>> the patch and for some reason received a failed
>> with it, So after going in and manually putting the threads in, the
>> kernel compiled fine,
>> then performing a suspend I did not receive this message from
>> appletouch. although I did receive:
>
> This comes from the bluetooth layer. I cannot see any connection
> and suspect coincidence. Marcel?
>
>> [  232.270737] BUG: unable to handle kernel paging request at 6b6b6c6b
>> [  232.270743] IP: [<c013f96d>] module_put+0x12/0x2b
>> [  232.270750] *pde = 00000000
>> [  232.270753] Oops: 0002 [#1] SMP
>> [  232.270757] Modules linked in: hci_usb cpufreq_ondemand
>> cpufreq_performance cpufreq_powersave rfcomm hidp l2cap bluetooth fan
>> ipmi_watchdog ipmi_msghandler uinput wlan_tkip ieee80211_crypt_tkip
>> ieee80211_crypt arpt_mangle arptable_filter arp_tables
>> nf_conntrack_ipv4 nf_conntrack iptable_mangle iptable_filter ip_tables
>> x_tables intelfb i2c_i810 i2c_algo_bit coretemp eeprom acpi_cpufreq
>> fglrx(P) applesmc joydev uvcvideo appletouch wlan_scan_sta
>> ath_rate_sample firewire_ohci firewire_core snd_hda_intel ath_pci
>> snd_pcm wlan ohci1394 intel_agp evdev ath_hal(P) snd_timer ieee1394
>> pata_acpi thermal ehci_hcd uhci_hcd snd_page_alloc snd_hwdep agpgart
>> video button processor
>> [  232.270800]
>> [  232.270802] Pid: 2690, comm: btdelconn Tainted: P
>> (2.6.26-rc4-00033-g5463508 #4)
>> [  232.270805] EIP: 0060:[<c013f96d>] EFLAGS: 00010246 CPU: 0
>> [  232.270808] EIP is at module_put+0x12/0x2b
>> [  232.270810] EAX: 00000000 EBX: 00000000 ECX: c020f49b EDX: 6b6b6b6b
>> [  232.270812] ESI: f4858830 EDI: f572aab8 EBP: f4893f78 ESP: f4893f78
>> [  232.270815]  DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
>> [  232.270817] Process btdelconn (pid: 2690, ti=f4892000 task=f7fe6220
>> task.ti=f4892000)
>> [  232.270819] Stack: f4893f8c f8bcb705 f572aaac f5b8bcb0 f572aaa8
>> f4893fa8 c012f90d f5b8bcc0
>> [  232.270826]        f8bcb6a6 f5b8bcb0 f4893fb0 f5b8bcc8 f4893fd0
>> c0130119 00000000 f7fe6220
>> [  232.270832]        c01324cd f4893fbc f4893fbc f5b8bcb0 c0130063
>> 00000000 f4893fe0 c013240d
>> [  232.270838] Call Trace:
>> [  232.270842]  [<f8bcb705>] ? del_conn+0x5f/0x64 [bluetooth]
>> [  232.270854]  [<c012f90d>] ? run_workqueue+0x78/0xfb
>> [  232.270859]  [<f8bcb6a6>] ? del_conn+0x0/0x64 [bluetooth]
>> [  232.270869]  [<c0130119>] ? worker_thread+0xb6/0xc2
>> [  232.270873]  [<c01324cd>] ? autoremove_wake_function+0x0/0x30
>> [  232.270878]  [<c0130063>] ? worker_thread+0x0/0xc2
>> [  232.270882]  [<c013240d>] ? kthread+0x3b/0x62
>> [  232.270885]  [<c01323d2>] ? kthread+0x0/0x62
>> [  232.270889]  [<c01044ef>] ? kernel_thread_helper+0x7/0x10
>> [  232.270896]  =======================
>> [  232.270897] Code: 84 00 00 00 e8 45 fa 0c 00 89 f8 e8 3e fa 0c 00
>> 5a 89 f0 59 5b 5e 5f 5d c3 55 85 c0 89 e5 89 c2 74 20 64 a1 04 d0 50
>> c0 c1 e0 06 <ff> 8c 02 00 01 00 00 83 3a 02 75 0b 8b 82 88 01 00 00 e8
>> 00 a6
>> [  232.270932] EIP: [<c013f96d>] module_put+0x12/0x2b SS:ESP 0068:f4893f78
>> [  232.270937] ---[ end trace c436afcb6083d3a0 ]---
>> [  232.297190] =============================================================================
>> [  232.297190] BUG kmalloc-2048: Poison overwritten
>> [  232.297190] -----------------------------------------------------------------------------
>> [  232.297190]
>> [  232.297190] INFO: 0xf4858848-0xf4858848. First byte 0x6a instead of 0x6b
>> [  232.297190] INFO: Allocated in hci_alloc_dev+0x15/0x51 [bluetooth]
>> age=19928 cpu=0 pid=2815
>> [  232.297190] INFO: Freed in bt_release+0xe/0x10 [bluetooth] age=1
>> cpu=0 pid=2690
>> [  232.297190] INFO: Slab 0xc1690b00 objects=15 used=12 fp=0xf4858830
>> flags=0x400020c3
>> [  232.297190] INFO: Object 0xf4858830 @offset=2096 fp=0xf485b950
>> [  232.297190]
>> [  232.297190] Bytes b4 0xf4858820:  10 0a 00 00 40 93 ff ff 5a 5a 5a
>> 5a 5a 5a 5a 5a ....@.ÿÿZZZZZZZZ
>> [  232.297190]   Object 0xf4858830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf4858840:  6b 6b 6b 6b 6b 6b 6b 6b 6a 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkjkkkkkkk
>> [  232.297190]   Object 0xf4858850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf4858860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf4858870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf4858880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf4858890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]   Object 0xf48588a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>> [  232.297190]  Redzone 0xf4859030:  bb bb bb bb
>>               »»»»
>> [  232.297190]  Padding 0xf4859058:  5a 5a 5a 5a 5a 5a 5a 5a
>>               ZZZZZZZZ
>> [  232.297190] Pid: 1390, comm: knodemgrd_0 Tainted: P      D
>> 2.6.26-rc4-00033-g5463508 #4
>> [  232.297190]  [<c016d1ab>] print_trailer+0xc8/0xd0
>> [  232.297190]  [<c016d226>] check_bytes_and_report+0x73/0x8f
>> [  232.297190]  [<c016d497>] check_object+0xa4/0x18c
>> [  232.297190]  [<c016e051>] __slab_alloc+0x387/0x45f
>> [  232.297190]  [<c016f08d>] __kmalloc+0x85/0xdb
>> [  232.297190]  [<f8ae935b>] ? hpsb_alloc_packet+0x17/0x51 [ieee1394]
>> [  232.297190]  [<c016d1d4>] ? check_bytes_and_report+0x21/0x8f
>> [  232.297190]  [<f8ae935b>] hpsb_alloc_packet+0x17/0x51 [ieee1394]
>> [  232.297190]  [<f8ae93ac>] create_reply_packet+0x17/0x77 [ieee1394]
>> [  232.297190]  [<f8ae97c6>] hpsb_packet_received+0x3ba/0x5db [ieee1394]
>> [  232.297190]  [<c016e089>] ? __slab_alloc+0x3bf/0x45f
>> [  232.297190]  [<f8ae9b29>] hpsb_send_packet+0x142/0x192 [ieee1394]
>> [  232.297190]  [<f8ae9bc3>] hpsb_send_packet_and_wait+0x31/0x47 [ieee1394]
>> [  232.297190]  [<f8aeac66>] hpsb_read+0x5d/0xb3 [ieee1394]
>> [  232.297190]  [<f8aed865>] nodemgr_bus_read+0x40/0x149 [ieee1394]
>> [  232.297190]  [<f8af0382>] csr1212_read_keyval+0x2c0/0x3be [ieee1394]
>> [  232.297190]  [<f8af0655>] csr1212_parse_csr+0x1d5/0x211 [ieee1394]
>> [  232.297190]  [<f8aee756>] nodemgr_host_thread+0x343/0x7b9 [ieee1394]
>> [  232.297190]  [<f8aee413>] ? nodemgr_host_thread+0x0/0x7b9 [ieee1394]
>> [  232.297190]  [<c013240d>] kthread+0x3b/0x62
>> [  232.297190]  [<c01323d2>] ? kthread+0x0/0x62
>> [  232.297190]  [<c01044ef>] kernel_thread_helper+0x7/0x10
>> [  232.297190]  =======================
>> [  232.297190] FIX kmalloc-2048: Restoring 0xf4858848-0xf4858848=0x6b
>> [  232.297190]
>> [  232.297190] FIX kmalloc-2048: Marking all objects used
>>
>> This was after the second simultaneous suspend, then after this five
>> more simultaneous suspends without this error,
>> but am not hearing anything out of appletouch.
>> Thank you for the help, and the patch.
>
> Is this a statistically significant number of tests? How often did you see
> the appletouch problem? Can we consider this regression to be fixed by
> this patch?
>
>        Regards
>                Oliver
>
>
>
>

Hello; I would have to say this regression would be fixed from a point
of having appletouch not spit out so many messages;
as for the regression to be completly fixed "it's tough to say", when
I dmesg | grep appletouch I see this:

[   14.811186] appletouch: Could not do mode read request from device
(Geyser Raw mode)
[   14.811186] appletouch: probe of 1-2:1.1 failed with error -12
[   15.045637] usbcore: registered new interface driver appletouch
[   17.153191] appletouch: Geyser mode initialized.
[   17.153191] input: appletouch as /class/input/input9
[   23.563768] appletouch: incomplete data package (first byte: 2, length: 4).

Now keep in mind, from my perspective maybe this is caused by
appletouch not properly configured i.g.
whenever I was using xorg 7.1 appletouch worked great (two and three
finger tap, scroll), but as soon as I loaded xorg 7.3,
the only function I have is two finger scroll.(still need to figure
out why my xorg.conf is not working with appletouch)
So maybe having xorg.conf not proper is resulting in this from above.
(but then again could not have anything to do with the above.)
regards;
-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10825] appletouch after wakeup
  2008-06-02 16:17                           ` Justin Mattock
@ 2008-06-02 17:20                             ` Justin Mattock
  0 siblings, 0 replies; 105+ messages in thread
From: Justin Mattock @ 2008-06-02 17:20 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: Marcel Holtmann, Rafael J. Wysocki, Linux Kernel Mailing List

On Mon, Jun 2, 2008 at 4:17 PM, Justin Mattock <justinmattock@gmail.com> wrote:
> On Mon, Jun 2, 2008 at 7:15 AM, Oliver Neukum <oliver@neukum.org> wrote:
>> Am Montag, 2. Juni 2008 01:09:00 schrieb Justin Mattock:
>>> On Sun, Jun 1, 2008 at 7:37 PM, Justin Mattock <justinmattock@gmail.com> wrote:
>>> > On Sun, Jun 1, 2008 at 6:29 PM, Oliver Neukum <oliver@neukum.org> wrote:
>>
>>> >> Please also apply the patch from the following link:
>>> >> https://bugzilla.novell.com/attachment.cgi?id=213908
>>
>>> O.K. sorry for the slow response, "I feel asleep", anyways I applied
>>> the patch and for some reason received a failed
>>> with it, So after going in and manually putting the threads in, the
>>> kernel compiled fine,
>>> then performing a suspend I did not receive this message from
>>> appletouch. although I did receive:
>>
>> This comes from the bluetooth layer. I cannot see any connection
>> and suspect coincidence. Marcel?
>>
>>> [  232.270737] BUG: unable to handle kernel paging request at 6b6b6c6b
>>> [  232.270743] IP: [<c013f96d>] module_put+0x12/0x2b
>>> [  232.270750] *pde = 00000000
>>> [  232.270753] Oops: 0002 [#1] SMP
>>> [  232.270757] Modules linked in: hci_usb cpufreq_ondemand
>>> cpufreq_performance cpufreq_powersave rfcomm hidp l2cap bluetooth fan
>>> ipmi_watchdog ipmi_msghandler uinput wlan_tkip ieee80211_crypt_tkip
>>> ieee80211_crypt arpt_mangle arptable_filter arp_tables
>>> nf_conntrack_ipv4 nf_conntrack iptable_mangle iptable_filter ip_tables
>>> x_tables intelfb i2c_i810 i2c_algo_bit coretemp eeprom acpi_cpufreq
>>> fglrx(P) applesmc joydev uvcvideo appletouch wlan_scan_sta
>>> ath_rate_sample firewire_ohci firewire_core snd_hda_intel ath_pci
>>> snd_pcm wlan ohci1394 intel_agp evdev ath_hal(P) snd_timer ieee1394
>>> pata_acpi thermal ehci_hcd uhci_hcd snd_page_alloc snd_hwdep agpgart
>>> video button processor
>>> [  232.270800]
>>> [  232.270802] Pid: 2690, comm: btdelconn Tainted: P
>>> (2.6.26-rc4-00033-g5463508 #4)
>>> [  232.270805] EIP: 0060:[<c013f96d>] EFLAGS: 00010246 CPU: 0
>>> [  232.270808] EIP is at module_put+0x12/0x2b
>>> [  232.270810] EAX: 00000000 EBX: 00000000 ECX: c020f49b EDX: 6b6b6b6b
>>> [  232.270812] ESI: f4858830 EDI: f572aab8 EBP: f4893f78 ESP: f4893f78
>>> [  232.270815]  DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
>>> [  232.270817] Process btdelconn (pid: 2690, ti=f4892000 task=f7fe6220
>>> task.ti=f4892000)
>>> [  232.270819] Stack: f4893f8c f8bcb705 f572aaac f5b8bcb0 f572aaa8
>>> f4893fa8 c012f90d f5b8bcc0
>>> [  232.270826]        f8bcb6a6 f5b8bcb0 f4893fb0 f5b8bcc8 f4893fd0
>>> c0130119 00000000 f7fe6220
>>> [  232.270832]        c01324cd f4893fbc f4893fbc f5b8bcb0 c0130063
>>> 00000000 f4893fe0 c013240d
>>> [  232.270838] Call Trace:
>>> [  232.270842]  [<f8bcb705>] ? del_conn+0x5f/0x64 [bluetooth]
>>> [  232.270854]  [<c012f90d>] ? run_workqueue+0x78/0xfb
>>> [  232.270859]  [<f8bcb6a6>] ? del_conn+0x0/0x64 [bluetooth]
>>> [  232.270869]  [<c0130119>] ? worker_thread+0xb6/0xc2
>>> [  232.270873]  [<c01324cd>] ? autoremove_wake_function+0x0/0x30
>>> [  232.270878]  [<c0130063>] ? worker_thread+0x0/0xc2
>>> [  232.270882]  [<c013240d>] ? kthread+0x3b/0x62
>>> [  232.270885]  [<c01323d2>] ? kthread+0x0/0x62
>>> [  232.270889]  [<c01044ef>] ? kernel_thread_helper+0x7/0x10
>>> [  232.270896]  =======================
>>> [  232.270897] Code: 84 00 00 00 e8 45 fa 0c 00 89 f8 e8 3e fa 0c 00
>>> 5a 89 f0 59 5b 5e 5f 5d c3 55 85 c0 89 e5 89 c2 74 20 64 a1 04 d0 50
>>> c0 c1 e0 06 <ff> 8c 02 00 01 00 00 83 3a 02 75 0b 8b 82 88 01 00 00 e8
>>> 00 a6
>>> [  232.270932] EIP: [<c013f96d>] module_put+0x12/0x2b SS:ESP 0068:f4893f78
>>> [  232.270937] ---[ end trace c436afcb6083d3a0 ]---
>>> [  232.297190] =============================================================================
>>> [  232.297190] BUG kmalloc-2048: Poison overwritten
>>> [  232.297190] -----------------------------------------------------------------------------
>>> [  232.297190]
>>> [  232.297190] INFO: 0xf4858848-0xf4858848. First byte 0x6a instead of 0x6b
>>> [  232.297190] INFO: Allocated in hci_alloc_dev+0x15/0x51 [bluetooth]
>>> age=19928 cpu=0 pid=2815
>>> [  232.297190] INFO: Freed in bt_release+0xe/0x10 [bluetooth] age=1
>>> cpu=0 pid=2690
>>> [  232.297190] INFO: Slab 0xc1690b00 objects=15 used=12 fp=0xf4858830
>>> flags=0x400020c3
>>> [  232.297190] INFO: Object 0xf4858830 @offset=2096 fp=0xf485b950
>>> [  232.297190]
>>> [  232.297190] Bytes b4 0xf4858820:  10 0a 00 00 40 93 ff ff 5a 5a 5a
>>> 5a 5a 5a 5a 5a ....@.ÿÿZZZZZZZZ
>>> [  232.297190]   Object 0xf4858830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf4858840:  6b 6b 6b 6b 6b 6b 6b 6b 6a 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkjkkkkkkk
>>> [  232.297190]   Object 0xf4858850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf4858860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf4858870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf4858880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf4858890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]   Object 0xf48588a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b
>>> 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
>>> [  232.297190]  Redzone 0xf4859030:  bb bb bb bb
>>>               »»»»
>>> [  232.297190]  Padding 0xf4859058:  5a 5a 5a 5a 5a 5a 5a 5a
>>>               ZZZZZZZZ
>>> [  232.297190] Pid: 1390, comm: knodemgrd_0 Tainted: P      D
>>> 2.6.26-rc4-00033-g5463508 #4
>>> [  232.297190]  [<c016d1ab>] print_trailer+0xc8/0xd0
>>> [  232.297190]  [<c016d226>] check_bytes_and_report+0x73/0x8f
>>> [  232.297190]  [<c016d497>] check_object+0xa4/0x18c
>>> [  232.297190]  [<c016e051>] __slab_alloc+0x387/0x45f
>>> [  232.297190]  [<c016f08d>] __kmalloc+0x85/0xdb
>>> [  232.297190]  [<f8ae935b>] ? hpsb_alloc_packet+0x17/0x51 [ieee1394]
>>> [  232.297190]  [<c016d1d4>] ? check_bytes_and_report+0x21/0x8f
>>> [  232.297190]  [<f8ae935b>] hpsb_alloc_packet+0x17/0x51 [ieee1394]
>>> [  232.297190]  [<f8ae93ac>] create_reply_packet+0x17/0x77 [ieee1394]
>>> [  232.297190]  [<f8ae97c6>] hpsb_packet_received+0x3ba/0x5db [ieee1394]
>>> [  232.297190]  [<c016e089>] ? __slab_alloc+0x3bf/0x45f
>>> [  232.297190]  [<f8ae9b29>] hpsb_send_packet+0x142/0x192 [ieee1394]
>>> [  232.297190]  [<f8ae9bc3>] hpsb_send_packet_and_wait+0x31/0x47 [ieee1394]
>>> [  232.297190]  [<f8aeac66>] hpsb_read+0x5d/0xb3 [ieee1394]
>>> [  232.297190]  [<f8aed865>] nodemgr_bus_read+0x40/0x149 [ieee1394]
>>> [  232.297190]  [<f8af0382>] csr1212_read_keyval+0x2c0/0x3be [ieee1394]
>>> [  232.297190]  [<f8af0655>] csr1212_parse_csr+0x1d5/0x211 [ieee1394]
>>> [  232.297190]  [<f8aee756>] nodemgr_host_thread+0x343/0x7b9 [ieee1394]
>>> [  232.297190]  [<f8aee413>] ? nodemgr_host_thread+0x0/0x7b9 [ieee1394]
>>> [  232.297190]  [<c013240d>] kthread+0x3b/0x62
>>> [  232.297190]  [<c01323d2>] ? kthread+0x0/0x62
>>> [  232.297190]  [<c01044ef>] kernel_thread_helper+0x7/0x10
>>> [  232.297190]  =======================
>>> [  232.297190] FIX kmalloc-2048: Restoring 0xf4858848-0xf4858848=0x6b
>>> [  232.297190]
>>> [  232.297190] FIX kmalloc-2048: Marking all objects used
>>>
>>> This was after the second simultaneous suspend, then after this five
>>> more simultaneous suspends without this error,
>>> but am not hearing anything out of appletouch.
>>> Thank you for the help, and the patch.
>>
>> Is this a statistically significant number of tests? How often did you see
>> the appletouch problem? Can we consider this regression to be fixed by
>> this patch?
>>
>>        Regards
>>                Oliver
>>
>>
>>
>>
>
> Hello; I would have to say this regression would be fixed from a point
> of having appletouch not spit out so many messages;
> as for the regression to be completly fixed "it's tough to say", when
> I dmesg | grep appletouch I see this:
>
> [   14.811186] appletouch: Could not do mode read request from device
> (Geyser Raw mode)
> [   14.811186] appletouch: probe of 1-2:1.1 failed with error -12
> [   15.045637] usbcore: registered new interface driver appletouch
> [   17.153191] appletouch: Geyser mode initialized.
> [   17.153191] input: appletouch as /class/input/input9
> [   23.563768] appletouch: incomplete data package (first byte: 2, length: 4).
>
> Now keep in mind, from my perspective maybe this is caused by
> appletouch not properly configured i.g.
> whenever I was using xorg 7.1 appletouch worked great (two and three
> finger tap, scroll), but as soon as I loaded xorg 7.3,
> the only function I have is two finger scroll.(still need to figure
> out why my xorg.conf is not working with appletouch)
> So maybe having xorg.conf not proper is resulting in this from above.
> (but then again could not have anything to do with the above.)
> regards;
> --
> Justin P. Mattock
>

Ahh I give up, I don't know what to say now, after a reboot I see this:

[   17.609756] usbcore: registered new interface driver appletouch
[   18.123672] appletouch: Geyser mode initialized.
[   18.123672] input: appletouch as /class/input/input9

Now she wants to play nice.
regards;

-- 
Justin P. Mattock

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3?
  2008-05-31 17:48 ` [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3? Rafael J. Wysocki
@ 2008-06-03  1:53   ` Sam Ravnborg
  0 siblings, 0 replies; 105+ messages in thread
From: Sam Ravnborg @ 2008-06-03  1:53 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, tvrtko.ursulin

On Sat, May 31, 2008 at 07:48:06PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10798
> Subject		: kbuild variable $(src) broken in 2.6.23-rc3?
> Submitter	: tvrtko.ursulin <tvrtko.ursulin@sophos.com>
> Date		: 2008-05-21 14:42 (11 days old)
> References	: http://marc.info/?l=linux-kbuild&amp;m=121138246208259&amp;w=2
> Handled-By	: Sam Ravnborg <sam@ravnborg.org>

Fixed by: 96d97f262aa6120f8dd8e8e9c7a0b0677de7e29e ("kbuild: fix $(src)
assignmnet with external modules")

Bug is closed in bugzilla.

	Sam

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530
  2008-05-31 17:48 ` [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530 Rafael J. Wysocki
@ 2008-06-03  2:10   ` Nigel Cunningham
  0 siblings, 0 replies; 105+ messages in thread
From: Nigel Cunningham @ 2008-06-03  2:10 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

Hi.

Patch still not in Linus' tree AFAICS.

Nigel

On Sat, 2008-05-31 at 19:48 +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10606
> Subject		: 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530
> Submitter	: NIgel Cunningham <nigel@suspend2.net>
> Date		: 2008-05-05 18:11 (27 days old)
> References	: http://lkml.org/lkml/2008/5/18/328
> 		  http://lkml.org/lkml/2008/5/26/3
> Patch		: http://bugzilla.kernel.org/attachment.cgi?id=16061&action=view
> 
> 


^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error
  2008-05-31 17:48 ` [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error Rafael J. Wysocki
@ 2008-06-03 18:33   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-06-03 18:33 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List, Toralf Förster

On Sat, May 31, 2008 at 07:48:05PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10716
> Subject		: VIDEO_DEV=y, DVB_CORE=m build error
> Submitter	: Toralf Förster <toralf.foerster@gmx.de>
> Date		: 2008-05-15 13:15 (17 days old)
> References	: http://marc.info/?l=linux-kernel&amp;m=121085736708543&amp;w=4
> 		  http://lkml.org/lkml/2008/5/18/128
> 		  http://marc.info/?l=linux-kernel&amp;m=121166610604173&amp;w=4
> Handled-By	: Adrian Bunk <bunk@kernel.org>
> Patch		: http://lkml.org/lkml/2008/5/16/47

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] 105+ messages in thread

* Re: [Bug #10792] mips/kernel/traps.c build error
  2008-05-31 17:48 ` [Bug #10792] mips/kernel/traps.c build error Rafael J. Wysocki
@ 2008-06-03 18:40   ` Adrian Bunk
  0 siblings, 0 replies; 105+ messages in thread
From: Adrian Bunk @ 2008-06-03 18:40 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux Kernel Mailing List

On Sat, May 31, 2008 at 07:48:06PM +0200, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.25.  Please verify if it still should be listed.

yes

> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10792
> Subject		: mips/kernel/traps.c build error
> Submitter	: Adrian Bunk <bunk@kernel.org>
> Date		: 2008-05-25 09:48 (7 days old)
> References	: http://lkml.org/lkml/2008/5/25/158
> Patch		:  in the mips tree

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] 105+ messages in thread

* Re: [Bug #10822] sky2 oops in 2.6.26-rc3
  2008-06-01  0:23     ` Arjan van de Ven
@ 2008-06-05 20:54       ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-06-05 20:54 UTC (permalink / raw)
  To: Arjan van de Ven
  Cc: Mikael Pettersson, Linux Kernel Mailing List, Stephen Hemminger

On Sunday, 1 of June 2008, Arjan van de Ven wrote:
> On Sun, 1 Jun 2008 02:10:25 +0200
> Mikael Pettersson <mikpe@it.uu.se> wrote:
> 
> > On Sat, 31 May 2008 19:48:06 +0200 (CEST), Rafael J. Wysocki wrote:
> > >This message has been generated automatically as a part of a report
> > >of recent regressions.
> > >
> > >The following bug entry is on the current list of known regressions
> > >from 2.6.25.  Please verify if it still should be listed.
> > >
> > >
> > >Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10822
> > >Subject		: sky2 oops in 2.6.26-rc3
> > >Submitter	: Mikael Pettersson <mikpe@it.uu.se>
> > >Date		: 2008-05-25 17:27 (7 days old)
> > >References	:
> > >http://marc.info/?l=linux-netdev&amp;m=121173650915153&amp= ;w=4
> > >Handled-By	: Stephen Hemminger
> > ><shemminger@linux-foundation.org>
> > 
> > It's a one-off crash that hasn't happened since I reported it.
> > And the fact that it happended while I was running 2.6.26-rc3
> > may just be coincidental and/or caused by temperamental HW.
> > 
> > My intention was never to classify this as a regression, I
> > just wanted to report a failure data point in case a pattern
> > emerges.
> 
> http://www.kerneloops.org/search.php?search=sky2_mac_int
> 
> shows that it happened around 2.6.23-rc1 era once as well...
> but not more than that.
> 
> That almost makes it look like a hw issue, and very unlikely as a
> regression.

Dropped from the list of recent regressions.

Thanks,
Rafael

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ?
  2008-06-01  0:45   ` Gabriel C
@ 2008-06-05 21:11     ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-06-05 21:11 UTC (permalink / raw)
  To: Gabriel C
  Cc: Linux Kernel Mailing List, Ingo Molnar, Peter Zijlstra,
	Peter Zijlstra

On Sunday, 1 of June 2008, Gabriel C wrote:
> Rafael J. Wysocki wrote:
> 
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 2.6.25.  Please verify if it still should be listed.
> 
> 
> No
> 
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10648
> > Subject		: CONFIG_PRINTK_TIME broken on git HEAD ?
> > Submitter	: Gabriel C <nix.or.die@googlemail.com>
> > Date		: 2008-05-08 00:26 (24 days old)
> > References	: http://lkml.org/lkml/2008/5/7/352
> > Handled-By	: Peter Zijlstra <a.p.zijlstra@chello.nl>
> > 		  Peter Zijlstra <peterz@infradead.org>
> > Patch		: http://bugzilla.kernel.org/show_bug.cgi?id=10648#c3
> > 
> > 
> 
> 
> This problem is fixed in linus tree by a381759d6ad5c5dea5a981918e0b4493e9b66ac7

Thanks, closed.

Rafael

^ permalink raw reply	[flat|nested] 105+ messages in thread

* Re: [Bug #10634] volanoMark regression with kernel 2.6.26-rc1
  2008-06-02  4:37     ` Zhang, Yanmin
@ 2008-06-05 21:11       ` Rafael J. Wysocki
  0 siblings, 0 replies; 105+ messages in thread
From: Rafael J. Wysocki @ 2008-06-05 21:11 UTC (permalink / raw)
  To: Zhang, Yanmin
  Cc: Dhaval Giani, Linux Kernel Mailing List, Ingo Molnar,
	Peter Zijlstra, Srivatsa Vaddagiri

On Monday, 2 of June 2008, Zhang, Yanmin wrote:
> 
> On Sun, 2008-06-01 at 00:32 +0530, Dhaval Giani wrote:
> > On Sat, May 31, 2008 at 07:48:05PM +0200, Rafael J. Wysocki wrote:
> > > This message has been generated automatically as a part of a report
> > > of recent regressions.
> > > 
> > > The following bug entry is on the current list of known regressions
> > > from 2.6.25.  Please verify if it still should be listed.
> > > 
> > > 
> > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=10634
> > > Subject		: volanoMark regression with kernel 2.6.26-rc1
> > > Submitter	: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
> > > Date		: 2008-05-06 2:06 (26 days old)
> > > References	: http://marc.info/?l=linux-kernel&m=121003968414287&w=2
> > > Handled-By	: Dhaval Giani <dhaval@linux.vnet.ibm.com>
> > > 		  Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
> > > 		  Ingo Molnar <mingo@elte.hu>
> > > 		  Peter Zijlstra <a.p.zijlstra@chello.nl>
> > > Patch		: http://marc.info/?l=linux-kernel&m=121015292616788&w=2
> > > 
> > 
> > Should have been fixed with 6363ca57c76b7b83639ca8c83fc285fa26a7880e
> > 
> > Yanmin, could you confirm please?
> Confirmed.

Thanks, closed.

Rafael

^ permalink raw reply	[flat|nested] 105+ messages in thread

end of thread, other threads:[~2008-06-05 21:11 UTC | newest]

Thread overview: 105+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-31 17:44 2.6.26-rc4-git4: Reported regressions from 2.6.25 Rafael J. Wysocki
2008-05-31 17:44 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
2008-05-31 20:09   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10616] Horrendous Audio Stutter - current git Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10748] dhclient fails to run; capabilities error Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10716] VIDEO_DEV=y, DVB_CORE=m build error Rafael J. Wysocki
2008-06-03 18:33   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10714] Badness seen on 2.6.26-rc2 with lockdep enabled Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10670] BUG: linux-2.6.26-rc1 oops at thinkpad_acpi:led_set_status Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10711] BUG: unable to handle kernel paging request - scsi_bus_uevent Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10741] bug in `tty: BKL pushdown'? Rafael J. Wysocki
2008-06-02  8:13   ` Johannes Weiner
2008-06-02  8:37     ` Rafael J. Wysocki
2008-06-02  9:38       ` Johannes Weiner
2008-06-02  9:40       ` Johannes Weiner
2008-05-31 17:48 ` [Bug #10634] volanoMark regression with kernel 2.6.26-rc1 Rafael J. Wysocki
2008-05-31 19:02   ` Dhaval Giani
2008-06-02  4:37     ` Zhang, Yanmin
2008-06-05 21:11       ` Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10730] build issue #503 for v2.6.26-rc2-433-gf26a398 : undefined reference to `request_firmware' Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10725] Write protect on on Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10638] sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10715] 2.6.25 -&gt; 2.6.26-rc1: pcmcia flash card changed name from hda to hdc Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10686] critical thermal shutdown regression 2.6.26-rc1 - HP Pavilion dv6700 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10642] general protection fault: 0000 [1] PREEMPT SMP DEBUG_PAGEALLOC Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10632] [2.6.26-rc1] Output to console stops when booted without 'vga=791' Rafael J. Wysocki
2008-05-31 22:27   ` Frans Pop
2008-05-31 17:48 ` [Bug #10629] 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10669] ACPI: kmemcheck: Caught 16-bit read from freed memory (f7c12ec6) Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
2008-06-01  0:45   ` Gabriel C
2008-06-05 21:11     ` Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10724] ACPI : EC: GPE Rafael J. Wysocki
2008-05-31 19:54   ` Justin Mattock
2008-05-31 17:48 ` [Bug #10749] the system doesn't shutdown Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10613] BIOS bug, APIC version is 0 for CPU#0! Rafael J. Wysocki
2008-06-01  0:49   ` Gabriel C
2008-06-01  0:54     ` Yinghai Lu
2008-05-31 17:48 ` [Bug #10726] x86-64 NODES_SHIFT compile failure Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10606] 2.6.26-rc1 regression: ACPI fails to load SDT. - Dell M1530 Rafael J. Wysocki
2008-06-03  2:10   ` Nigel Cunningham
2008-05-31 17:48 ` [Bug #10764] some serial configurations are now broken Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10830] two different oopses with 2.6.26-rc4 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10786] 2.6.26-rc3 64bit SMP does not boot on J5600 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10828] [2.6.25-git18 =&gt; 2.6.26-rc1-git1] Xorg crash with xf86MapVidMem error Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10826] NFS oops in 2.6.26rc4 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10831] Barely understandeable sound with snd_hda_intel and 2.6.26-rc4 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10829] sh/kernel/cpu/irq/intc-sh5.c build fix Rafael J. Wysocki
2008-06-02  9:16   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10787] pcie hotplug bootup crash fix Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10841] asm-m32r/uaccess.h must #include &lt;asm/setup.h&gt; Rafael J. Wysocki
2008-05-31 20:09   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10798] kbuild variable $(src) broken in 2.6.23-rc3? Rafael J. Wysocki
2008-06-03  1:53   ` Sam Ravnborg
2008-05-31 17:48 ` [Bug #10815] 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10823] stuck localhost TCP connections, v2.6.26-rc3+ Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10795] MIPS SEAD compile fix Rafael J. Wysocki
2008-06-01 17:30   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10762] ocfs2: rename user_stack{,_ops} Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10760] PCIEHP breakage in 2.6.26-rc1,2.6.26-rc2,2.6.26-rc3 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10799] sky2 general protection fault Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10761] hackbench regression with 2.6.26-rc2 on tulsa machine Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10765] iwl3945/mac80211: association times out since 2.6.26-rc1 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10816] vt/fbcon: fix background color on line feed Rafael J. Wysocki
2008-05-31 20:39   ` thunder7
2008-05-31 22:37     ` Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10827] 2.6.26rc4 GFS2 oops Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10819] Fatal DMA error with b43 driver since 2.6.26 Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10821] rt25xx: lock dependancy warning, association failure, and kmalloc corruption Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10822] sky2 oops in 2.6.26-rc3 Rafael J. Wysocki
2008-06-01  0:10   ` Mikael Pettersson
2008-06-01  0:23     ` Arjan van de Ven
2008-06-05 20:54       ` Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #10825] appletouch after wakeup Rafael J. Wysocki
2008-05-31 18:30   ` Oliver Neukum
2008-05-31 19:53     ` Justin Mattock
2008-05-31 21:25       ` Oliver Neukum
2008-05-31 22:10         ` Justin Mattock
2008-05-31 23:21           ` Justin Mattock
2008-06-01 10:40             ` Oliver Neukum
2008-06-01 17:20               ` Justin Mattock
2008-06-01 18:25                 ` Justin Mattock
2008-06-01 18:29                   ` Oliver Neukum
2008-06-01 19:37                     ` Justin Mattock
2008-06-01 23:09                       ` Justin Mattock
2008-06-02  7:15                         ` Oliver Neukum
2008-06-02 12:44                           ` Bob Copeland
2008-06-02 13:10                             ` Oliver Neukum
2008-06-02 14:06                               ` Bob Copeland
2008-06-02 14:40                                 ` Oliver Neukum
2008-06-02 14:55                                   ` Bob Copeland
2008-06-02 16:17                           ` Justin Mattock
2008-06-02 17:20                             ` Justin Mattock
2008-05-31 17:48 ` [Bug #10792] mips/kernel/traps.c build error Rafael J. Wysocki
2008-06-03 18:40   ` Adrian Bunk
2008-05-31 17:48 ` [Bug #10794] mips: CONF_CM_DEFAULT " Rafael J. Wysocki
2008-05-31 17:48 ` [Bug #9791] Clock is running too fast^Wslow using acpi_pm clocksource Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2008-05-24 20:28 2.6.26-rc3-git7: Reported regressions from 2.6.25 Rafael J. Wysocki
2008-05-24 20:31 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
2008-05-18 11:10 2.6.26-rc2-git5: Reported regressions from 2.6.25 Rafael J. Wysocki
2008-05-18 11:13 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki
2008-05-18 17:21   ` Peter Zijlstra
2008-05-18 18:37     ` Peter Zijlstra
2008-05-21  0:38       ` Gabriel C
2008-05-21  1:10         ` Gabriel C
     [not found] <20080515162703.D4970108060@picon.linux-foundation.org>
2008-05-15 16:48 ` [Bug 10648] " Peter Zijlstra
2008-05-11 19:56 2.6.26-rc1-git9: Reported regressions from 2.6.25 Rafael J. Wysocki
2008-05-11 20:04 ` [Bug #10648] CONFIG_PRINTK_TIME broken on git HEAD ? Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox